Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding --rpm-digest=sha256 to fix RPM install on FIPS enabled system #1276

Merged
merged 1 commit into from
May 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions com.github.IsmaelMartinez.teams_for_linux.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@
<url type="bugtracker">https://github.com/IsmaelMartinez/teams-for-linux/issues</url>
<launchable type="desktop-id">com.github.IsmaelMartinez.teams_for_linux.desktop</launchable>
<releases>
<release version="1.5.2" date="2024-05-28">
<description>
<ul>
<li>Adding --rpm-digest=sha256 to fix RPM insatll on FIPS enabled system</li>
</ul>
</description>
</release>
<release version="1.5.1" date="2024-05-28">
<description>
<ul>
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "teams-for-linux",
"version": "1.5.1",
"version": "1.5.2",
"main": "app/index.js",
"description": "Unofficial client for Microsoft Teams for Linux",
"homepage": "https://github.com/IsmaelMartinez/teams-for-linux",
Expand Down Expand Up @@ -96,7 +96,8 @@
},
"rpm": {
"fpm": [
"--rpm-rpmbuild-define=_build_id_links none"
"--rpm-rpmbuild-define=_build_id_links none",
"--rpm-digest=sha256"
]
},
"snap": {
Expand Down
Loading