release-please 17.10.0 → 17.10.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.
@@ -14,4 +14,4 @@ export { Logger, setLogger } from './util/logger';
14
14
  export { GitHub } from './github';
15
15
  export declare const configSchema: any;
16
16
  export declare const manifestSchema: any;
17
- export declare const VERSION = "17.10.0";
17
+ export declare const VERSION = "17.10.2";
@@ -36,6 +36,6 @@ Object.defineProperty(exports, "GitHub", { enumerable: true, get: function () {
36
36
  exports.configSchema = require('../../schemas/config.json');
37
37
  exports.manifestSchema = require('../../schemas/manifest.json');
38
38
  // x-release-please-start-version
39
- exports.VERSION = '17.10.0';
39
+ exports.VERSION = '17.10.2';
40
40
  // x-release-please-end
41
41
  //# sourceMappingURL=index.js.map
@@ -72,7 +72,9 @@ class LibrarianYamlUpdater extends default_1.DefaultUpdater {
72
72
  }
73
73
  else {
74
74
  const isGoMatch = (this.packagePath && libraryJSON.name === this.packagePath) ||
75
- (this.component && libraryJSON.name === this.component);
75
+ ((!this.packagePath || this.packagePath === '.') &&
76
+ this.component &&
77
+ libraryJSON.name === this.component);
76
78
  const isPythonNodeMatch = this.packagePath &&
77
79
  this.deriveOutputDirectory(libraryJSON) === this.packagePath;
78
80
  if (isGoMatch || isPythonNodeMatch) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "release-please",
3
- "version": "17.10.0",
3
+ "version": "17.10.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",
@@ -86,7 +86,7 @@
86
86
  "figures": "^3.0.0",
87
87
  "http-proxy-agent": "^7.0.0",
88
88
  "https-proxy-agent": "^7.0.0",
89
- "js-yaml": "^4.0.0",
89
+ "js-yaml": "^4.3.0",
90
90
  "jsonpath-plus": "^10.0.0",
91
91
  "node-html-parser": "^6.0.0",
92
92
  "parse-github-repo-url": "^1.4.1",
@@ -103,7 +103,8 @@
103
103
  "node": ">=22.0.0"
104
104
  },
105
105
  "overrides": {
106
- "tmp": "0.2.6",
107
- "serialize-javascript": "^7.0.5"
106
+ "tmp": "^0.2.7",
107
+ "serialize-javascript": "^7.0.5",
108
+ "js-yaml": "^4.3.0"
108
109
  }
109
110
  }