@anolilab/multi-semantic-release 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/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## @anolilab/multi-semantic-release [2.0.7](https://github.com/anolilab/semantic-release/compare/@anolilab/multi-semantic-release@2.0.6...@anolilab/multi-semantic-release@2.0.7) (2025-11-01)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **deps:** update dependencies and package manager version ([732159f](https://github.com/anolilab/semantic-release/commit/732159f1f0dbbae3446aec900abd90e63cf0d563))
6
+
7
+ ## @anolilab/multi-semantic-release [2.0.6](https://github.com/anolilab/semantic-release/compare/@anolilab/multi-semantic-release@2.0.5...@anolilab/multi-semantic-release@2.0.6) (2025-10-07)
8
+
9
+ ### Bug Fixes
10
+
11
+ * Add support for .mjs configuration files in multi-semantic-release package ([9c6e87e](https://github.com/anolilab/semantic-release/commit/9c6e87e01d7df815767468dfbdc87de072065d45))
12
+
1
13
  ## @anolilab/multi-semantic-release [2.0.5](https://github.com/anolilab/semantic-release/compare/@anolilab/multi-semantic-release@2.0.4...@anolilab/multi-semantic-release@2.0.5) (2025-10-01)
2
14
 
3
15
  ### Bug Fixes
@@ -16,8 +16,10 @@ const CONFIG_FILES = [
16
16
  `.${CONFIG_NAME}rc.yml`,
17
17
  `.${CONFIG_NAME}rc.js`,
18
18
  `.${CONFIG_NAME}rc.cjs`,
19
+ `.${CONFIG_NAME}rc.mjs`,
19
20
  `${CONFIG_NAME}.config.js`,
20
21
  `${CONFIG_NAME}.config.cjs`,
22
+ `${CONFIG_NAME}.config.mjs`,
21
23
  ];
22
24
 
23
25
  /**
package/lib/get-config.js CHANGED
@@ -10,8 +10,10 @@ const CONFIG_FILES = [
10
10
  `.${CONFIG_NAME}rc.yml`,
11
11
  `.${CONFIG_NAME}rc.js`,
12
12
  `.${CONFIG_NAME}rc.cjs`,
13
+ `.${CONFIG_NAME}rc.mjs`,
13
14
  `${CONFIG_NAME}.config.js`,
14
15
  `${CONFIG_NAME}.config.cjs`,
16
+ `${CONFIG_NAME}.config.mjs`,
15
17
  ];
16
18
 
17
19
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anolilab/multi-semantic-release",
3
- "version": "2.0.5",
3
+ "version": "2.0.7",
4
4
  "description": "A multi semantic release tool for a monorepo.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -35,7 +35,7 @@
35
35
  "git-log-parser": "^1.2.1",
36
36
  "lodash-es": "^4.17.21",
37
37
  "resolve-from": "^5.0.0",
38
- "semver": "^7.7.2",
38
+ "semver": "^7.7.3",
39
39
  "signale": "^1.4.0",
40
40
  "stream-buffers": "^3.0.3",
41
41
  "yargs": "18.0.0"