release-please 15.8.0 → 15.8.2
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
|
@@ -4,6 +4,20 @@
|
|
|
4
4
|
|
|
5
5
|
[1]: https://www.npmjs.com/package/release-please?activeTab=versions
|
|
6
6
|
|
|
7
|
+
## [15.8.2](https://github.com/googleapis/release-please/compare/v15.8.1...v15.8.2) (2023-03-13)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* **cargo-workspaces:** Expand globs in crate paths ([#1852](https://github.com/googleapis/release-please/issues/1852)) ([0179f25](https://github.com/googleapis/release-please/commit/0179f25bf3bed7bca71c3cbdae6cc5a892954fe7))
|
|
13
|
+
|
|
14
|
+
## [15.8.1](https://github.com/googleapis/release-please/compare/v15.8.0...v15.8.1) (2023-03-07)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **sequential-calls:** Use push instead of concat when returning releases ([#1865](https://github.com/googleapis/release-please/issues/1865)) ([1026c73](https://github.com/googleapis/release-please/commit/1026c7366a94b4dbfa567580613bcf31a991a516))
|
|
20
|
+
|
|
7
21
|
## [15.8.0](https://github.com/googleapis/release-please/compare/v15.7.0...v15.8.0) (2023-02-15)
|
|
8
22
|
|
|
9
23
|
|
package/build/src/manifest.js
CHANGED
|
@@ -629,7 +629,7 @@ class Manifest {
|
|
|
629
629
|
const resultReleases = [];
|
|
630
630
|
for (const pullNumber in releasesByPullRequest) {
|
|
631
631
|
const releases = await this.createReleasesForPullRequest(releasesByPullRequest[pullNumber], pullRequestsByNumber[pullNumber]);
|
|
632
|
-
resultReleases.
|
|
632
|
+
resultReleases.push(...releases);
|
|
633
633
|
}
|
|
634
634
|
return resultReleases;
|
|
635
635
|
}
|
|
@@ -44,7 +44,7 @@ class CargoWorkspace extends workspace_1.WorkspacePlugin {
|
|
|
44
44
|
}
|
|
45
45
|
const allCrates = [];
|
|
46
46
|
const candidatesByPackage = {};
|
|
47
|
-
const members = cargoManifest.workspace.members;
|
|
47
|
+
const members = (await Promise.all(cargoManifest.workspace.members.map(member => this.github.findFilesByGlob(member)))).flat();
|
|
48
48
|
members.push(manifest_1.ROOT_PROJECT_PATH);
|
|
49
49
|
for (const path of members) {
|
|
50
50
|
const manifestPath = (0, workspace_1.addPath)(path, 'Cargo.toml');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "release-please",
|
|
3
|
-
"version": "15.8.
|
|
3
|
+
"version": "15.8.2",
|
|
4
4
|
"description": "generate release PRs based on the conventionalcommits.org spec",
|
|
5
5
|
"main": "./build/src/index.js",
|
|
6
6
|
"bin": "./build/src/bin/release-please.js",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"gts": "^3.1.0",
|
|
64
64
|
"mocha": "^9.2.2",
|
|
65
65
|
"nock": "^13.0.0",
|
|
66
|
-
"sinon": "15.0.
|
|
66
|
+
"sinon": "15.0.2",
|
|
67
67
|
"snap-shot-it": "^7.0.0"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|