Skip to content

Commit

Permalink
Release v1.2.0 (#31)
Browse files Browse the repository at this point in the history
* replace string concat with template string
  • Loading branch information
msimerson authored Oct 15, 2022
1 parent 946a799 commit 6b27da5
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches:
- master
paths:
- package.json

env:
CI: true
Expand Down
2 changes: 1 addition & 1 deletion .release
Submodule .release updated 4 files
+6 −2 CHANGELOG.md
+8 −0 README.md
+4 −1 finish.sh
+2 −2 submit.sh
6 changes: 5 additions & 1 deletion Changes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
### Unreleased

- Update milter headers handling to be compatible with rspamd 3.3 preserving compatibility with older versions

### [1.2.0] - 2022-10-14

- Make milter header handling compatible with rspamd 3.3 (#30)


### [1.1.8] - 2022-06-06
Expand Down Expand Up @@ -61,3 +64,4 @@


[1.1.8]: https://github.com/haraka/haraka-plugin-rspamd/releases/tag/1.1.8
[1.1.9]: https://github.com/haraka/haraka-plugin-rspamd/releases/tag/1.1.9
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ exports.do_milter_headers = function (connection, data) {
}

if (data.milter.add_headers) {
connection.logdebug("milter.add_headers: " + JSON.stringify(data.milter.add_headers), plugin);
connection.logdebug(`milter.add_headers: ${JSON.stringify(data.milter.add_headers)}`, plugin);
Object.keys(data.milter.add_headers).forEach((key) => {
const header_values = data.milter.add_headers[key];
if (!header_values) return;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "haraka-plugin-rspamd",
"version": "1.1.8",
"version": "1.2.0",
"description": "Haraka plugin for rspamd",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 6b27da5

Please sign in to comment.