ac-ses 2.0.5 → 2.0.7
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/.github/CODEOWNERS +9 -0
- package/.ncurc.js +6 -3
- package/CHANGELOG.md +21 -0
- package/SECURITY.md +22 -0
- package/package.json +8 -6
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Code Owners
|
|
2
|
+
#
|
|
3
|
+
# This file defines who is responsible for code in this repository.
|
|
4
|
+
# Reviews from code owners are automatically requested for pull requests.
|
|
5
|
+
#
|
|
6
|
+
# More info: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
|
|
7
|
+
|
|
8
|
+
# Default owner for everything in the repo
|
|
9
|
+
* @AdmiralCloud/ac-maintainer-backend
|
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,25 @@
|
|
|
1
1
|
|
|
2
|
+
## [2.0.7](https://github.com/admiralcloud/ac-ses/compare/v2.0.6..v2.0.7) (2026-03-19 12:11:55)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fix
|
|
6
|
+
|
|
7
|
+
* **App:** Package updates | MP | [17776fe2234209164db687970db710a5de6732b8](https://github.com/admiralcloud/ac-ses/commit/17776fe2234209164db687970db710a5de6732b8)
|
|
8
|
+
Package updates
|
|
9
|
+
Related issues:
|
|
10
|
+
* **Misc:** Package updates | MP | [06ef8e434c8afa3188dd7689ec6ed1909a1d829d](https://github.com/admiralcloud/ac-ses/commit/06ef8e434c8afa3188dd7689ec6ed1909a1d829d)
|
|
11
|
+
Package updates
|
|
12
|
+
Related issues:
|
|
13
|
+
|
|
14
|
+
## [2.0.6](https://github.com/admiralcloud/ac-ses/compare/v2.0.5..v2.0.6) (2026-02-03 08:21:52)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fix
|
|
18
|
+
|
|
19
|
+
* **App:** Package updates | MP | [a92285654e98cd907dd8fc649a47720333aa889e](https://github.com/admiralcloud/ac-ses/commit/a92285654e98cd907dd8fc649a47720333aa889e)
|
|
20
|
+
Package updates
|
|
21
|
+
Related issues:
|
|
22
|
+
|
|
2
23
|
## [2.0.5](https://github.com/admiralcloud/ac-ses/compare/v2.0.4..v2.0.5) (2026-01-23 13:47:04)
|
|
3
24
|
|
|
4
25
|
|
package/SECURITY.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Security Policy
|
|
2
|
+
|
|
3
|
+
## Supported Versions
|
|
4
|
+
|
|
5
|
+
We only provide security updates for the latest version of this project.
|
|
6
|
+
|
|
7
|
+
If you are using an older version, please upgrade to the latest release to receive security fixes.
|
|
8
|
+
|
|
9
|
+
## Reporting a Vulnerability
|
|
10
|
+
|
|
11
|
+
If you discover a security vulnerability, please report it by creating a GitHub issue in this repository.
|
|
12
|
+
|
|
13
|
+
Please include the following information:
|
|
14
|
+
|
|
15
|
+
- Description of the vulnerability
|
|
16
|
+
- Steps to reproduce the issue
|
|
17
|
+
- Potential impact
|
|
18
|
+
- Any suggested fixes (if you have them)
|
|
19
|
+
|
|
20
|
+
We will review your report and respond as soon as possible.
|
|
21
|
+
|
|
22
|
+
Thank you for helping keep AdmiralCloud and our users safe!
|
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.7",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@aws-sdk/client-sesv2": "^3.
|
|
10
|
-
"ac-custom-error": "^
|
|
9
|
+
"@aws-sdk/client-sesv2": "^3.1012.0",
|
|
10
|
+
"ac-custom-error": "^2.0.2",
|
|
11
11
|
"lodash": "^4.17.23",
|
|
12
12
|
"quoted-printable": "^1.0.1",
|
|
13
13
|
"utf8": "^3.0.0",
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"ac-semantic-release": "^0.4.10",
|
|
18
18
|
"chai": "^4.5.0",
|
|
19
|
-
"eslint": "
|
|
20
|
-
"expect": "^30.
|
|
19
|
+
"eslint": "10.x",
|
|
20
|
+
"expect": "^30.3.0",
|
|
21
21
|
"mocha": "^11.7.5"
|
|
22
22
|
},
|
|
23
23
|
"scripts": {
|
|
@@ -27,7 +27,9 @@
|
|
|
27
27
|
"node": ">=20.0.0"
|
|
28
28
|
},
|
|
29
29
|
"resolutions": {
|
|
30
|
-
"mocha/diff": "^8.0.3"
|
|
30
|
+
"mocha/diff": "^8.0.3",
|
|
31
|
+
"mocha/serialize-javascript": "^7.0.3",
|
|
32
|
+
"flatted": "3.4.0"
|
|
31
33
|
},
|
|
32
34
|
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
33
35
|
}
|