release-please 14.13.2 → 14.14.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.
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
+ ## [14.14.0](https://github.com/googleapis/release-please/compare/v14.13.2...v14.14.0) (2022-10-25)
8
+
9
+
10
+ ### Features
11
+
12
+ * Extract and return the created release id ([#1719](https://github.com/googleapis/release-please/issues/1719)) ([ef1c156](https://github.com/googleapis/release-please/commit/ef1c156ab1d44969548b4cb30b412b2066568aa4))
13
+
7
14
  ## [14.13.2](https://github.com/googleapis/release-please/compare/v14.13.1...v14.13.2) (2022-10-18)
8
15
 
9
16
 
@@ -56,6 +56,7 @@ export interface ReleaseOptions {
56
56
  prerelease?: boolean;
57
57
  }
58
58
  export interface GitHubRelease {
59
+ id: number;
59
60
  name?: string;
60
61
  tagName: string;
61
62
  sha: string;
@@ -282,6 +282,7 @@ class GitHub {
282
282
  target_commitish: release.sha,
283
283
  });
284
284
  return {
285
+ id: resp.data.id,
285
286
  name: resp.data.name || undefined,
286
287
  tagName: resp.data.tag_name,
287
288
  sha: resp.data.target_commitish,
@@ -178,6 +178,7 @@ export declare const DEFAULT_SNAPSHOT_LABELS: string[];
178
178
  export declare const SNOOZE_LABEL = "autorelease: snooze";
179
179
  export declare const MANIFEST_PULL_REQUEST_TITLE_PATTERN = "chore: release ${branch}";
180
180
  interface CreatedRelease extends GitHubRelease {
181
+ id: number;
181
182
  path: string;
182
183
  version: string;
183
184
  major: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "release-please",
3
- "version": "14.13.2",
3
+ "version": "14.14.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",
@@ -49,7 +49,7 @@
49
49
  "@types/lerna__package-graph": "^5.0.0",
50
50
  "@types/lerna__run-topologically": "^5.0.0",
51
51
  "@types/mocha": "^9.0.0",
52
- "@types/node": "^16.0.0",
52
+ "@types/node": "^18.0.0",
53
53
  "@types/pino": "^7.0.0",
54
54
  "@types/semver": "^7.0.0",
55
55
  "@types/sinon": "^10.0.0",