ac-ses 2.0.5 → 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 +6 -3
- package/CHANGELOG.md +9 -0
- package/package.json +3 -3
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:
|
|
3
|
-
return
|
|
5
|
+
target: packageName => {
|
|
6
|
+
return minorUpdatePackages.includes(packageName) ? 'minor' : 'latest'
|
|
4
7
|
}
|
|
5
|
-
}
|
|
8
|
+
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,13 @@
|
|
|
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
|
+
|
|
2
11
|
## [2.0.5](https://github.com/admiralcloud/ac-ses/compare/v2.0.4..v2.0.5) (2026-01-23 13:47:04)
|
|
3
12
|
|
|
4
13
|
|
package/package.json
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": "admiralcloud/ac-ses",
|
|
6
6
|
"homepage": "https://www.admiralcloud.com",
|
|
7
|
-
"version": "2.0.
|
|
7
|
+
"version": "2.0.6",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@aws-sdk/client-sesv2": "^3.
|
|
10
|
-
"ac-custom-error": "^1.0.
|
|
9
|
+
"@aws-sdk/client-sesv2": "^3.981.0",
|
|
10
|
+
"ac-custom-error": "^1.0.6",
|
|
11
11
|
"lodash": "^4.17.23",
|
|
12
12
|
"quoted-printable": "^1.0.1",
|
|
13
13
|
"utf8": "^3.0.0",
|