semantic-release 24.1.2 → 24.1.3

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.
@@ -159,6 +159,8 @@
159
159
  - `verifyConditions`: Verify plugin configuration and login to Helm registry
160
160
  - `prepare`: Package Helm chart to local folder
161
161
  - `publish`: Publish Helm chart to OCI registry
162
+ - [semantic-release-mirror-version](https://github.com/GarthDB/semantic-release-mirror-version)
163
+ - `prepare`: Update the version number in any file that matches the defined [file glob](https://github.com/isaacs/node-glob).
162
164
  - [semantic-release-space](https://github.com/123FLO321/semantic-release-space)
163
165
  - `verifyConditions` Verifies that all required options are set.
164
166
  - `prepare` Creates a JetBrains Space Deployment Target if it does not yet exist.
package/lib/utils.js CHANGED
@@ -27,7 +27,7 @@ export function isMajorRange(range) {
27
27
  }
28
28
 
29
29
  export function isMaintenanceRange(range) {
30
- return /^\d+\.(?:\d+|x)(?:\.x)?$/i.test(range);
30
+ return /^\d+(?:\.(?:\d+|x))?\.x$/i.test(range);
31
31
  }
32
32
 
33
33
  export function getUpperBound(range) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "semantic-release",
3
3
  "description": "Automated semver compliant package publishing",
4
- "version": "24.1.2",
4
+ "version": "24.1.3",
5
5
  "type": "module",
6
6
  "author": "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
7
7
  "ava": {
@@ -66,13 +66,13 @@
66
66
  "dockerode": "4.0.2",
67
67
  "file-url": "4.0.0",
68
68
  "fs-extra": "11.2.0",
69
- "got": "14.4.2",
69
+ "got": "14.4.3",
70
70
  "js-yaml": "4.1.0",
71
71
  "lockfile-lint": "4.14.0",
72
72
  "ls-engines": "0.9.3",
73
73
  "mockserver-client": "5.15.0",
74
74
  "nock": "13.5.5",
75
- "npm-run-all2": "6.2.3",
75
+ "npm-run-all2": "6.2.4",
76
76
  "p-retry": "6.2.0",
77
77
  "prettier": "3.3.3",
78
78
  "publint": "0.2.11",
@@ -162,5 +162,5 @@
162
162
  "github>semantic-release/.github:renovate-config"
163
163
  ]
164
164
  },
165
- "packageManager": "npm@10.8.3"
165
+ "packageManager": "npm@10.9.0"
166
166
  }