release-please 14.14.0 → 14.15.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 +12 -0
- package/build/src/strategies/php-yoshi.js +2 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,18 @@
|
|
|
4
4
|
|
|
5
5
|
[1]: https://www.npmjs.com/package/release-please?activeTab=versions
|
|
6
6
|
|
|
7
|
+
## [14.15.0](https://github.com/googleapis/release-please/compare/v14.14.0...v14.15.0) (2022-10-27)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* **php-yoshi:** Add "misc" as trigger, hide "chore" ([#1725](https://github.com/googleapis/release-please/issues/1725)) ([f7a9d09](https://github.com/googleapis/release-please/commit/f7a9d091670f0a70a13a1b641fbc6d07ec000da2))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* **deps:** Update dependency type-fest to v3 ([#1649](https://github.com/googleapis/release-please/issues/1649)) ([d3c3a3e](https://github.com/googleapis/release-please/commit/d3c3a3eae6557994ad244c0bdd79e1782971d2c1))
|
|
18
|
+
|
|
7
19
|
## [14.14.0](https://github.com/googleapis/release-please/compare/v14.13.2...v14.14.0) (2022-10-25)
|
|
8
20
|
|
|
9
21
|
|
|
@@ -34,7 +34,8 @@ const CHANGELOG_SECTIONS = [
|
|
|
34
34
|
{ type: 'perf', section: 'Performance Improvements' },
|
|
35
35
|
{ type: 'revert', section: 'Reverts' },
|
|
36
36
|
{ type: 'docs', section: 'Documentation' },
|
|
37
|
-
{ type: '
|
|
37
|
+
{ type: 'misc', section: 'Miscellaneous' },
|
|
38
|
+
{ type: 'chore', section: 'Chores', hidden: true },
|
|
38
39
|
{ type: 'style', section: 'Styles', hidden: true },
|
|
39
40
|
{ type: 'refactor', section: 'Code Refactoring', hidden: true },
|
|
40
41
|
{ type: 'test', section: 'Tests', hidden: true },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "release-please",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.15.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",
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
"node-html-parser": "^6.0.0",
|
|
96
96
|
"parse-github-repo-url": "^1.4.1",
|
|
97
97
|
"semver": "^7.0.0",
|
|
98
|
-
"type-fest": "^
|
|
98
|
+
"type-fest": "^3.0.0",
|
|
99
99
|
"typescript": "^4.6.4",
|
|
100
100
|
"unist-util-visit": "^2.0.3",
|
|
101
101
|
"unist-util-visit-parents": "^3.1.1",
|