release-please 17.10.4 → 17.11.0

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.
@@ -50,11 +50,13 @@ const node_librarian_1 = require("./strategies/node-librarian");
50
50
  const ocaml_1 = require("./strategies/ocaml");
51
51
  const php_1 = require("./strategies/php");
52
52
  const php_yoshi_1 = require("./strategies/php-yoshi");
53
+ const php_librarian_1 = require("./strategies/php-librarian");
53
54
  const python_1 = require("./strategies/python");
54
55
  const python_librarian_1 = require("./strategies/python-librarian");
55
56
  const r_1 = require("./strategies/r");
56
57
  const ruby_1 = require("./strategies/ruby");
57
58
  const ruby_yoshi_1 = require("./strategies/ruby-yoshi");
59
+ const ruby_librarian_1 = require("./strategies/ruby-librarian");
58
60
  const rust_1 = require("./strategies/rust");
59
61
  const sfdx_1 = require("./strategies/sfdx");
60
62
  const simple_1 = require("./strategies/simple");
@@ -96,11 +98,13 @@ const releasers = {
96
98
  ocaml: options => new ocaml_1.OCaml(options),
97
99
  php: options => new php_1.PHP(options),
98
100
  'php-yoshi': options => new php_yoshi_1.PHPYoshi(options),
101
+ 'php-librarian': options => new php_librarian_1.PHPLibrarian(options),
99
102
  python: options => new python_1.Python(options),
100
103
  'python-librarian': options => new python_librarian_1.PythonLibrarian(options),
101
104
  r: options => new r_1.R(options),
102
105
  ruby: options => new ruby_1.Ruby(options),
103
106
  'ruby-yoshi': options => new ruby_yoshi_1.RubyYoshi(options),
107
+ 'ruby-librarian': options => new ruby_librarian_1.RubyLibrarian(options),
104
108
  rust: options => new rust_1.Rust(options),
105
109
  salesforce: options => new sfdx_1.Sfdx(options),
106
110
  sfdx: options => new sfdx_1.Sfdx(options),
@@ -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.4";
17
+ export declare const VERSION = "17.11.0";
@@ -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.4';
39
+ exports.VERSION = '17.11.0';
40
40
  // x-release-please-end
41
41
  //# sourceMappingURL=index.js.map
@@ -0,0 +1,6 @@
1
+ import { PHPYoshi } from './php-yoshi';
2
+ import { BuildUpdatesOptions } from './base';
3
+ import { Update } from '../update';
4
+ export declare class PHPLibrarian extends PHPYoshi {
5
+ protected buildUpdates(options: BuildUpdatesOptions): Promise<Update[]>;
6
+ }
@@ -0,0 +1,35 @@
1
+ "use strict";
2
+ // Copyright 2026 Google LLC
3
+ //
4
+ // Licensed under the Apache License, Version 2.0 (the "License");
5
+ // you may not use this file except in compliance with the License.
6
+ // You may obtain a copy of the License at
7
+ //
8
+ // http://www.apache.org/licenses/LICENSE-2.0
9
+ //
10
+ // Unless required by applicable law or agreed to in writing, software
11
+ // distributed under the License is distributed on an "AS IS" BASIS,
12
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ // See the License for the specific language governing permissions and
14
+ // limitations under the License.
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.PHPLibrarian = void 0;
17
+ const php_yoshi_1 = require("./php-yoshi");
18
+ const librarian_yaml_1 = require("../updaters/librarian-yaml");
19
+ class PHPLibrarian extends php_yoshi_1.PHPYoshi {
20
+ async buildUpdates(options) {
21
+ const updates = await super.buildUpdates(options);
22
+ // Update librarian.yaml if this package exists within it.
23
+ updates.push({
24
+ path: 'librarian.yaml',
25
+ createIfMissing: false,
26
+ updater: new librarian_yaml_1.LibrarianYamlUpdater({
27
+ version: options.newVersion,
28
+ packagePath: this.path,
29
+ }),
30
+ });
31
+ return updates;
32
+ }
33
+ }
34
+ exports.PHPLibrarian = PHPLibrarian;
35
+ //# sourceMappingURL=php-librarian.js.map
@@ -0,0 +1,6 @@
1
+ import { RubyYoshi } from './ruby-yoshi';
2
+ import { BuildUpdatesOptions } from './base';
3
+ import { Update } from '../update';
4
+ export declare class RubyLibrarian extends RubyYoshi {
5
+ protected buildUpdates(options: BuildUpdatesOptions): Promise<Update[]>;
6
+ }
@@ -0,0 +1,35 @@
1
+ "use strict";
2
+ // Copyright 2026 Google LLC
3
+ //
4
+ // Licensed under the Apache License, Version 2.0 (the "License");
5
+ // you may not use this file except in compliance with the License.
6
+ // You may obtain a copy of the License at
7
+ //
8
+ // http://www.apache.org/licenses/LICENSE-2.0
9
+ //
10
+ // Unless required by applicable law or agreed to in writing, software
11
+ // distributed under the License is distributed on an "AS IS" BASIS,
12
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ // See the License for the specific language governing permissions and
14
+ // limitations under the License.
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.RubyLibrarian = void 0;
17
+ const ruby_yoshi_1 = require("./ruby-yoshi");
18
+ const librarian_yaml_1 = require("../updaters/librarian-yaml");
19
+ class RubyLibrarian extends ruby_yoshi_1.RubyYoshi {
20
+ async buildUpdates(options) {
21
+ const updates = await super.buildUpdates(options);
22
+ // Update librarian.yaml if this package exists within it.
23
+ updates.push({
24
+ path: 'librarian.yaml',
25
+ createIfMissing: false,
26
+ updater: new librarian_yaml_1.LibrarianYamlUpdater({
27
+ version: options.newVersion,
28
+ packagePath: this.path,
29
+ }),
30
+ });
31
+ return updates;
32
+ }
33
+ }
34
+ exports.RubyLibrarian = RubyLibrarian;
35
+ //# sourceMappingURL=ruby-librarian.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "release-please",
3
- "version": "17.10.4",
3
+ "version": "17.11.0",
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",
@@ -105,6 +105,7 @@
105
105
  "overrides": {
106
106
  "tmp": "^0.2.7",
107
107
  "serialize-javascript": "^7.0.5",
108
- "js-yaml": "^4.3.0"
108
+ "js-yaml": "^4.3.0",
109
+ "brace-expansion": "^2.1.2"
109
110
  }
110
111
  }