@postalsys/certs 1.0.14 → 1.0.15
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 +3 -1
- package/CHANGELOG.md +8 -0
- package/package.json +3 -3
package/.ncurc.js
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
module.exports = {
|
|
2
2
|
upgrade: true,
|
|
3
|
-
reject: ['eslint-config-prettier', 'express']
|
|
3
|
+
reject: ['eslint-config-prettier', 'express'],
|
|
4
|
+
// do not update joi from 17, check emailengine joi compatibility first
|
|
5
|
+
target: (name) => (name === 'joi' ? 'minor' : 'latest')
|
|
4
6
|
};
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.15](https://github.com/postalsys/certs/compare/v1.0.14...v1.0.15) (2026-06-13)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* bumped deps ([90788b8](https://github.com/postalsys/certs/commit/90788b881a1d47ecaed2083af3f07436a44cbe09))
|
|
9
|
+
* Bumped deps ([471f304](https://github.com/postalsys/certs/commit/471f304bc25327c2738a87b6a85a43b3c24433a5))
|
|
10
|
+
|
|
3
11
|
## [1.0.14](https://github.com/postalsys/certs/compare/v1.0.13...v1.0.14) (2026-03-23)
|
|
4
12
|
|
|
5
13
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@postalsys/certs",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.15",
|
|
4
4
|
"description": "Manage Let's Encrypt certificates",
|
|
5
5
|
"main": "lib/certs.js",
|
|
6
6
|
"scripts": {
|
|
@@ -21,12 +21,12 @@
|
|
|
21
21
|
"eslint-config-nodemailer": "1.2.0",
|
|
22
22
|
"eslint-config-prettier": "9.1.0",
|
|
23
23
|
"express": "4.19.2",
|
|
24
|
-
"ioredis": "5.
|
|
24
|
+
"ioredis": "5.11.1"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@root/acme": "3.1.0",
|
|
28
28
|
"ioredfour": "1.4.1",
|
|
29
|
-
"joi": "
|
|
29
|
+
"joi": "17.13.4",
|
|
30
30
|
"msgpack5": "6.0.2",
|
|
31
31
|
"pem-jwk": "2.0.0",
|
|
32
32
|
"pino": "10.3.1",
|