update-versions 6.0.18 → 7.0.0
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/CHANGELOG.md +10 -0
- package/LICENSE +1 -1
- package/README.md +1 -1
- package/cli.js +2 -3
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## 7.0.0 (2024-01-05)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- require Node.js 18 ([fe9ad6d](https://github.com/codsen/codsen/commit/fe9ad6dc0f6d02579c2c140d4d423c96342874bc))
|
|
11
|
+
|
|
12
|
+
### BREAKING CHANGES
|
|
13
|
+
|
|
14
|
+
- Require Node.js 18
|
|
15
|
+
|
|
6
16
|
## 6.0.0 (2022-12-01)
|
|
7
17
|
|
|
8
18
|
### BREAKING CHANGES
|
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2010-
|
|
3
|
+
Copyright (c) 2010-2024 Roy Revelt and other contributors
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
6
|
a copy of this software and associated documentation files (the
|
package/README.md
CHANGED
|
@@ -45,6 +45,6 @@ To report bugs or request features or assistance, [raise an issue](https://githu
|
|
|
45
45
|
|
|
46
46
|
MIT License.
|
|
47
47
|
|
|
48
|
-
Copyright © 2010-
|
|
48
|
+
Copyright © 2010-2024 Roy Revelt and other contributors.
|
|
49
49
|
|
|
50
50
|
<p align="center"><img src="https://codsen.com/images/png-codsen-ok.png" width="98" alt="ok" align="center"> <img src="https://codsen.com/images/png-codsen-1.png" width="148" alt="codsen" align="center"> <img src="https://codsen.com/images/png-codsen-star-small.png" width="32" alt="star" align="center"></p>
|
package/cli.js
CHANGED
|
@@ -433,9 +433,8 @@ if (cli.flags) {
|
|
|
433
433
|
singleDepName,
|
|
434
434
|
)
|
|
435
435
|
) {
|
|
436
|
-
updatedPackages[
|
|
437
|
-
singleDepName
|
|
438
|
-
] = `${compiledDepNameVersionPairs[singleDepName]}`;
|
|
436
|
+
updatedPackages[singleDepName] =
|
|
437
|
+
`${compiledDepNameVersionPairs[singleDepName]}`;
|
|
439
438
|
}
|
|
440
439
|
}
|
|
441
440
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "update-versions",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0",
|
|
4
4
|
"description": "Like npm-check-updates but supports Lerna monorepos and enforces strict semver values",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"app",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"unit": "uvu test"
|
|
60
60
|
},
|
|
61
61
|
"engines": {
|
|
62
|
-
"node": ">=
|
|
62
|
+
"node": ">=18"
|
|
63
63
|
},
|
|
64
64
|
"c8": {
|
|
65
65
|
"check-coverage": false,
|
|
@@ -76,22 +76,22 @@
|
|
|
76
76
|
},
|
|
77
77
|
"dependencies": {
|
|
78
78
|
"ansi-diff-stream": "^1.2.1",
|
|
79
|
-
"codsen-utils": "^1.6.
|
|
80
|
-
"edit-package-json": "^0.8.
|
|
81
|
-
"globby": "^
|
|
79
|
+
"codsen-utils": "^1.6.3",
|
|
80
|
+
"edit-package-json": "^0.8.18",
|
|
81
|
+
"globby": "^14.0.0",
|
|
82
82
|
"is-online": "^10.0.0",
|
|
83
|
-
"log-update": "^
|
|
84
|
-
"meow": "^
|
|
83
|
+
"log-update": "^6.0.0",
|
|
84
|
+
"meow": "^13.1.0",
|
|
85
85
|
"object-path": "^0.11.8",
|
|
86
|
-
"p-map": "^
|
|
87
|
-
"p-progress": "^0.
|
|
86
|
+
"p-map": "^7.0.1",
|
|
87
|
+
"p-progress": "^1.0.0",
|
|
88
88
|
"p-reduce": "^3.0.0",
|
|
89
|
-
"pacote": "^17.0.
|
|
90
|
-
"update-notifier": "^
|
|
89
|
+
"pacote": "^17.0.5",
|
|
90
|
+
"update-notifier": "^7.0.0",
|
|
91
91
|
"write-file-atomic": "^5.0.1"
|
|
92
92
|
},
|
|
93
93
|
"devDependencies": {
|
|
94
|
-
"fs-extra": "^11.
|
|
94
|
+
"fs-extra": "^11.2.0",
|
|
95
95
|
"rfdc": "^1.3.0"
|
|
96
96
|
}
|
|
97
97
|
}
|