-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into 184-drop-messages-from-banned-dns
- Loading branch information
Showing
16 changed files
with
80 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
run: | | ||
sudo apt-get update | ||
sudo apt-get install rpmlint | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
with: | ||
# Get all branches and tags so the latest tag can be found for VERSION | ||
fetch-depth: 0 | ||
|
@@ -51,7 +51,7 @@ jobs: | |
run: rpmlint ${{ steps.rpm.outputs.rpm_dir_path }} | ||
|
||
- name: Upload artifact | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].3 | ||
with: | ||
name: Binary and Source RPMs | ||
path: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,16 @@ | ||
Changelog for ssm | ||
================= | ||
* Thu Jun 29 2023 Adrian Coveney <[email protected]> - 3.3.0-1 | ||
- Added destination queue to the log during startup to aid troubleshooting. | ||
- Added check that the config file exists to allow for better error messages. | ||
- Changed dependencies to limit python-ldap below 3.4.0 and python-daemon below 2.3.0. | ||
- Changed rpmbuild config to use less OS-specific dependencies. | ||
- Fixed read timeouts leading to a crash. | ||
- Fixed command line arguments to allow a relative file path for the DNs file. | ||
- Removed the separate logging config file. | ||
- Removed python-daemon as a hard requirement as only needed for receivers. | ||
- Refactored a large amount of code for maintainability and security. | ||
|
||
* Wed Apr 28 2021 Adrian Coveney <[email protected]> - 3.2.1-1 | ||
- Changed certificate and key comparison to allow both RSA and EC keys. | ||
- Corrected dependencies to include OpenSSL. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
%endif | ||
|
||
Name: apel-ssm | ||
Version: 3.2.1 | ||
Version: 3.3.0 | ||
%define releasenumber 1 | ||
Release: %{releasenumber}%{?dist} | ||
Summary: Secure stomp messenger | ||
|
@@ -100,6 +100,17 @@ rm -rf $RPM_BUILD_ROOT | |
%doc %_defaultdocdir/%{name} | ||
|
||
%changelog | ||
* Thu Jun 29 2023 Adrian Coveney <[email protected]> - 3.3.0-1 | ||
- Added destination queue to the log during startup to aid troubleshooting. | ||
- Added check that the config file exists to allow for better error messages. | ||
- Changed dependencies to limit python-ldap below 3.4.0 and python-daemon below 2.3.0. | ||
- Changed rpmbuild config to use less OS-specific dependencies. | ||
- Fixed read timeouts leading to a crash. | ||
- Fixed command line arguments to allow a relative file path for the DNs file. | ||
- Removed the separate logging config file. | ||
- Removed python-daemon as a hard requirement as only needed for receivers. | ||
- Refactored a large amount of code for maintainability and security. | ||
|
||
* Wed Apr 28 2021 Adrian Coveney <[email protected]> - 3.2.1-1 | ||
- Changed certificate and key comparison to allow both RSA and EC keys. | ||
- Corrected dependencies to include OpenSSL. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
|
||
set -eu | ||
|
||
TAG=3.2.1-1 | ||
TAG=3.3.0-1 | ||
|
||
SOURCE_DIR=~/debbuild/source | ||
BUILD_DIR=~/debbuild/build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters