ac-ses 2.0.4 → 2.0.6

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.
package/.ncurc.js CHANGED
@@ -1,5 +1,8 @@
1
+ // List packages for minor updates
2
+ const minorUpdatePackages = ['chai', 'uuid']
3
+
1
4
  module.exports = {
2
- target: (dependencyName, parsedVersion) => {
3
- return dependencyName === 'chai' ? 'minor' : 'latest'
5
+ target: packageName => {
6
+ return minorUpdatePackages.includes(packageName) ? 'minor' : 'latest'
4
7
  }
5
- }
8
+ }
package/CHANGELOG.md CHANGED
@@ -1,4 +1,22 @@
1
1
 
2
+ ## [2.0.6](https://github.com/admiralcloud/ac-ses/compare/v2.0.5..v2.0.6) (2026-02-03 08:21:52)
3
+
4
+
5
+ ### Bug Fix
6
+
7
+ * **App:** Package updates | MP | [a92285654e98cd907dd8fc649a47720333aa889e](https://github.com/admiralcloud/ac-ses/commit/a92285654e98cd907dd8fc649a47720333aa889e)
8
+ Package updates
9
+ Related issues:
10
+
11
+ ## [2.0.5](https://github.com/admiralcloud/ac-ses/compare/v2.0.4..v2.0.5) (2026-01-23 13:47:04)
12
+
13
+
14
+ ### Bug Fix
15
+
16
+ * **App:** Package updates | MP | [b114a4bbddb388b61ce6e637c9e21177f9427ecc](https://github.com/admiralcloud/ac-ses/commit/b114a4bbddb388b61ce6e637c9e21177f9427ecc)
17
+ Package updates
18
+ Related issues:
19
+
2
20
  ## [2.0.4](https://github.com/admiralcloud/ac-ses/compare/v2.0.3..v2.0.4) (2026-01-19 11:51:37)
3
21
 
4
22
 
package/package.json CHANGED
@@ -4,30 +4,30 @@
4
4
  "license": "MIT",
5
5
  "repository": "admiralcloud/ac-ses",
6
6
  "homepage": "https://www.admiralcloud.com",
7
- "version": "2.0.4",
7
+ "version": "2.0.6",
8
8
  "dependencies": {
9
- "@aws-sdk/client-sesv2": "^3.971.0",
10
- "ac-custom-error": "^1.0.5",
11
- "lodash": "^4.17.21",
9
+ "@aws-sdk/client-sesv2": "^3.981.0",
10
+ "ac-custom-error": "^1.0.6",
11
+ "lodash": "^4.17.23",
12
12
  "quoted-printable": "^1.0.1",
13
13
  "utf8": "^3.0.0",
14
14
  "uuid": "^11.x"
15
15
  },
16
16
  "devDependencies": {
17
- "ac-semantic-release": "^0.4.8",
17
+ "ac-semantic-release": "^0.4.10",
18
18
  "chai": "^4.5.0",
19
19
  "eslint": "9.x",
20
- "expect": "^29.7.0",
21
- "mocha": "^11.7.5",
22
- "mocha-junit-reporter": "^2.2.1",
23
- "mocha-multi-reporters": "^1.5.1"
20
+ "expect": "^30.2.0",
21
+ "mocha": "^11.7.5"
24
22
  },
25
23
  "scripts": {
26
- "test": "mocha --reporter spec",
27
- "test-jenkins": "JUNIT_REPORT_PATH=./report.xml mocha --colors --reporter mocha-multi-reporters --reporter-options configFile=mocha-reporter-config.json"
24
+ "test": "mocha --reporter spec"
28
25
  },
29
26
  "engines": {
30
27
  "node": ">=20.0.0"
31
28
  },
29
+ "resolutions": {
30
+ "mocha/diff": "^8.0.3"
31
+ },
32
32
  "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
33
33
  }
@@ -1,7 +0,0 @@
1
- {
2
- "reporterEnabled": "spec,mocha-junit-reporter",
3
- "mochaJunitReporterReporterOptions": {
4
- "mochaFile": "./report.xml",
5
- "suiteName": "Notification Services"
6
- }
7
- }