release-please 13.4.1 → 13.4.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 +7 -0
- package/build/src/manifest.js +5 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,13 @@
|
|
|
4
4
|
|
|
5
5
|
[1]: https://www.npmjs.com/package/release-please?activeTab=versions
|
|
6
6
|
|
|
7
|
+
### [13.4.2](https://github.com/googleapis/release-please/compare/v13.4.1...v13.4.2) (2022-01-21)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* Manifest.fromFile no longer ignores manifestFile arg ([#1243](https://github.com/googleapis/release-please/issues/1243)) ([04a44ab](https://github.com/googleapis/release-please/commit/04a44ab08e8ce3911ad814744cebb79aab2ef8aa))
|
|
13
|
+
|
|
7
14
|
### [13.4.1](https://github.com/googleapis/release-please/compare/v13.4.0...v13.4.1) (2022-01-20)
|
|
8
15
|
|
|
9
16
|
|
package/build/src/manifest.js
CHANGED
|
@@ -93,7 +93,11 @@ class Manifest {
|
|
|
93
93
|
parseConfig(github, configFile, targetBranch),
|
|
94
94
|
parseReleasedVersions(github, manifestFile, targetBranch),
|
|
95
95
|
]);
|
|
96
|
-
return new Manifest(github, targetBranch, repositoryConfig, releasedVersions, {
|
|
96
|
+
return new Manifest(github, targetBranch, repositoryConfig, releasedVersions, {
|
|
97
|
+
manifestPath: manifestFile,
|
|
98
|
+
...manifestOptions,
|
|
99
|
+
...manifestOptionOverrides,
|
|
100
|
+
});
|
|
97
101
|
}
|
|
98
102
|
/**
|
|
99
103
|
* Create a Manifest from explicit config in code. This assumes that the
|