release-please 15.1.1 → 15.1.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,13 @@
|
|
|
4
4
|
|
|
5
5
|
[1]: https://www.npmjs.com/package/release-please?activeTab=versions
|
|
6
6
|
|
|
7
|
+
## [15.1.2](https://github.com/googleapis/release-please/compare/v15.1.1...v15.1.2) (2023-01-17)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* **ruby:** Gemfile.lock should not update when gem name is empty ([#1805](https://github.com/googleapis/release-please/issues/1805)) ([b54d499](https://github.com/googleapis/release-please/commit/b54d499a6b38e13175402fbd7eb7be75094d5014))
|
|
13
|
+
|
|
7
14
|
## [15.1.1](https://github.com/googleapis/release-please/compare/v15.1.0...v15.1.1) (2023-01-06)
|
|
8
15
|
|
|
9
16
|
|
|
@@ -40,6 +40,9 @@ class GemfileLock extends default_1.DefaultUpdater {
|
|
|
40
40
|
* @returns {string} The updated content
|
|
41
41
|
*/
|
|
42
42
|
updateContent(content) {
|
|
43
|
+
if (!this.gemName) {
|
|
44
|
+
return content;
|
|
45
|
+
}
|
|
43
46
|
// Bundler will convert 1.0.0-alpha1 to 1.0.0.pre.alpha1, so we need to
|
|
44
47
|
// do the same here.
|
|
45
48
|
const versionString = (0, common_1.resolveRubyGemfileLockVersion)(this.version.toString());
|