@anolilab/multi-semantic-release 1.1.9-alpha.3 → 1.1.10

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,9 +1,14 @@
1
- ## @anolilab/multi-semantic-release [1.1.9-alpha.3](https://github.com/anolilab/semantic-release/compare/@anolilab/multi-semantic-release@1.1.9-alpha.2...@anolilab/multi-semantic-release@1.1.9-alpha.3) (2025-01-21)
1
+ ## @anolilab/multi-semantic-release [1.1.10](https://github.com/anolilab/semantic-release/compare/@anolilab/multi-semantic-release@1.1.9...@anolilab/multi-semantic-release@1.1.10) (2025-02-10)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **multi-semantic-release:** updated semver to 7.7.1, all dev deps, fixed README.md about the unsupported multi-releaserc file ([ca93b3e](https://github.com/anolilab/semantic-release/commit/ca93b3e486f58b3d0f3621f45c7ddc43a02ce0f6))
2
6
 
3
7
 
4
8
  ### Dependencies
5
9
 
6
- * **@anolilab/semantic-release-clean-package-json:** upgraded to 1.0.1-alpha.3
10
+ * **@anolilab/semantic-release-clean-package-json:** upgraded to 2.0.1
11
+ * **@anolilab/semantic-release-pnpm:** upgraded to 1.1.10
7
12
 
8
13
  ## @anolilab/multi-semantic-release [1.1.7](https://github.com/anolilab/semantic-release/compare/@anolilab/multi-semantic-release@1.1.6...@anolilab/multi-semantic-release@1.1.7) (2025-01-14)
9
14
 
package/README.md CHANGED
@@ -136,12 +136,6 @@ For example, let's say your project has 4 packages (i.e. a, b, c and d) and you
136
136
 
137
137
  ## Configuring Multi-Semantic-Release
138
138
 
139
- multi-semantic-release can be configured a number of ways:
140
-
141
- - A `.multi-releaserc` file, written in YAML or JSON, with optional extensions: `.yaml`/ `.yml`/ `.json`/ `.js`
142
- - A `multi-release.config.js` file that exports an object
143
- - A `multi-release` key in the workspace root package.json
144
-
145
139
  Alternatively some options may be set via CLI flags.
146
140
 
147
141
  **Note:** CLI arguments take precedence over options configured in the configuration file.
@@ -173,30 +167,6 @@ Alternatively some options may be set via CLI flags.
173
167
 
174
168
  ### Examples
175
169
 
176
- - Via multi-release key in the project's package.json file:
177
-
178
- ```json
179
- {
180
- "multi-release": {
181
- "ignorePackages": ["!packages/b/**", "!packages/c/**"],
182
- "deps": {
183
- "bump": "inherit"
184
- }
185
- }
186
- }
187
- ```
188
-
189
- - Via `.multi-releaserc` file:
190
-
191
- ```json
192
- {
193
- "ignorePackages": ["!packages/b/**", "!packages/c/**"],
194
- "deps": {
195
- "bump": "inherit"
196
- }
197
- }
198
- ```
199
-
200
170
  - Via CLI:
201
171
 
202
172
  ```sh
@@ -357,7 +327,7 @@ The integration with semantic release is pretty janky — this is a quick summar
357
327
  - If packages have local deps (e.g. `dependencies` in package.json points to an internal package) this step also does a `patch` bump if any of them did a bump.
358
328
  - This has to work recursively! See [hasChangedDeep.js](https://github.com/dhoulb/multi-semantic-release/blob/master/lib/hasChangedDeep.js)
359
329
 
360
- 3. The configuration can be layered (i.e. global `.releaserc` and then per-directory overrides for individual packages).
330
+ 3. The configuration can be layered (i.e. global `semantic-release` cli) and then per-directory overrides for individual packages).
361
331
 
362
332
  - Had to duplicate the internal cosmiconfig setup from semantic release to get this working :(
363
333
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anolilab/multi-semantic-release",
3
- "version": "1.1.9-alpha.3",
3
+ "version": "1.1.10",
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.6.3",
38
+ "semver": "^7.7.1",
39
39
  "signale": "^1.4.0",
40
40
  "stream-buffers": "^3.0.3",
41
41
  "yargs": "^17.7.2"