haraka-plugin-spamassassin 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +6 -2
package/CHANGELOG.md CHANGED
@@ -4,6 +4,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
4
4
 
5
5
  ### Unreleased
6
6
 
7
+ ### [1.0.2] - 2025-01-26
8
+
9
+ - prettier: move config into package.json
10
+
7
11
  ### [1.0.1] - 2025-01-09
8
12
 
9
13
  - dep(eslint): update to v9
@@ -13,3 +17,5 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
13
17
  - repackaged from haraka/Haraka
14
18
 
15
19
  [1.0.1]: https://github.com/haraka/haraka-plugin-spamassassin/releases/tag/v1.0.1
20
+ [1.0.2]: https://github.com/haraka/haraka-plugin-spamassassin/releases/tag/v1.0.2
21
+ [1.0.0]: https://github.com/haraka/haraka-plugin-spamassassin/releases/tag/1.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "haraka-plugin-spamassassin",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Haraka plugin that scans messages with SpamAssassin",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -37,8 +37,12 @@
37
37
  "haraka-utils": "^1.1.3"
38
38
  },
39
39
  "devDependencies": {
40
- "@haraka/eslint-config": "2.0.2",
40
+ "@haraka/eslint-config": "^2.0.2",
41
41
  "address-rfc2821": "^2.1.2",
42
42
  "haraka-test-fixtures": "1.3.8"
43
+ },
44
+ "prettier": {
45
+ "singleQuote": true,
46
+ "semi": false
43
47
  }
44
48
  }