release-please 15.1.0 → 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,21 @@
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
+
14
+ ## [15.1.1](https://github.com/googleapis/release-please/compare/v15.1.0...v15.1.1) (2023-01-06)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **deps:** Update @google-automations/git-file-utils to 1.2.5 ([89f363e](https://github.com/googleapis/release-please/commit/89f363e015bb3a5a7e738232352db70e4d336d86))
20
+ * **deps:** Update code-suggester to 4.2.0 ([#1799](https://github.com/googleapis/release-please/issues/1799)) ([89f363e](https://github.com/googleapis/release-please/commit/89f363e015bb3a5a7e738232352db70e4d336d86))
21
+
7
22
  ## [15.1.0](https://github.com/googleapis/release-please/compare/v15.0.0...v15.1.0) (2023-01-05)
8
23
 
9
24
 
@@ -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());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "release-please",
3
- "version": "15.1.0",
3
+ "version": "15.1.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",
@@ -68,7 +68,7 @@
68
68
  },
69
69
  "dependencies": {
70
70
  "@conventional-commits/parser": "^0.4.1",
71
- "@google-automations/git-file-utils": "^1.2.0",
71
+ "@google-automations/git-file-utils": "^1.2.5",
72
72
  "@iarna/toml": "^2.2.5",
73
73
  "@lerna/collect-updates": "^4.0.0",
74
74
  "@lerna/package": "^4.0.0",
@@ -81,7 +81,7 @@
81
81
  "@types/npm-package-arg": "^6.1.0",
82
82
  "@xmldom/xmldom": "^0.8.4",
83
83
  "chalk": "^4.0.0",
84
- "code-suggester": "^4.1.0",
84
+ "code-suggester": "^4.2.0",
85
85
  "conventional-changelog-conventionalcommits": "^5.0.0",
86
86
  "conventional-changelog-writer": "^5.0.0",
87
87
  "conventional-commits-filter": "^2.0.2",