release-please 14.11.0 → 14.11.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,20 @@
4
4
 
5
5
  [1]: https://www.npmjs.com/package/release-please?activeTab=versions
6
6
 
7
+ ## [14.11.2](https://github.com/googleapis/release-please/compare/v14.11.1...v14.11.2) (2022-10-11)
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * Add initial-version to allowed properties in manifest schema ([#1691](https://github.com/googleapis/release-please/issues/1691)) ([408ddac](https://github.com/googleapis/release-please/commit/408ddac5dd4e1bc2c9b992365fa864e80298cee5))
13
+
14
+ ## [14.11.1](https://github.com/googleapis/release-please/compare/v14.11.0...v14.11.1) (2022-10-10)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * Explicitly sort PRs by updated desc ([#1685](https://github.com/googleapis/release-please/issues/1685)) ([807bda0](https://github.com/googleapis/release-please/commit/807bda0ab3e09e6116b43cd670bab1115bfdbff2))
20
+
7
21
  ## [14.11.0](https://github.com/googleapis/release-please/compare/v14.10.2...v14.11.0) (2022-10-05)
8
22
 
9
23
 
@@ -676,6 +676,8 @@ class GitHub {
676
676
  owner: this.repository.owner,
677
677
  repo: this.repository.repo,
678
678
  base: targetBranch,
679
+ sort: 'updated',
680
+ direction: 'desc',
679
681
  })) {
680
682
  for (const pull of pulls) {
681
683
  // The REST API does not have an option for "merged"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "release-please",
3
- "version": "14.11.0",
3
+ "version": "14.11.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",
@@ -393,6 +393,7 @@
393
393
  "tag-separator": true,
394
394
  "extra-files": true,
395
395
  "version-file": true,
396
- "snapshot-label": true
396
+ "snapshot-label": true,
397
+ "initial-version": true
397
398
  }
398
399
  }