release-please 13.4.15 → 13.5.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,18 @@
4
4
 
5
5
  [1]: https://www.npmjs.com/package/release-please?activeTab=versions
6
6
 
7
+ ## [13.5.0](https://github.com/googleapis/release-please/compare/v13.4.15...v13.5.0) (2022-03-08)
8
+
9
+
10
+ ### Features
11
+
12
+ * **ocaml:** update opam `project.opam.locked` files ([#1325](https://github.com/googleapis/release-please/issues/1325)) ([858199e](https://github.com/googleapis/release-please/commit/858199e4fac71ce2574c4195b85dc4e8bf26e0f7))
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * fix regex for parsing major version update ([#1330](https://github.com/googleapis/release-please/issues/1330)) ([afadec9](https://github.com/googleapis/release-please/commit/afadec95aa62aa32372512455326c4cdf8943f70))
18
+
7
19
  ### [13.4.15](https://github.com/googleapis/release-please/compare/v13.4.14...v13.4.15) (2022-03-02)
8
20
 
9
21
 
@@ -61,6 +61,16 @@ class OCaml extends base_1.BaseStrategy {
61
61
  }),
62
62
  });
63
63
  });
64
+ const opamLockedPaths = await this.github.findFilesByExtension('opam.locked', this.path);
65
+ opamLockedPaths.filter(notEsyLock).forEach(path => {
66
+ updates.push({
67
+ path: this.addPath(path),
68
+ createIfMissing: false,
69
+ updater: new opam_1.Opam({
70
+ version,
71
+ }),
72
+ });
73
+ });
64
74
  updates.push({
65
75
  path: this.addPath('dune-project'),
66
76
  createIfMissing: false,
@@ -18,7 +18,7 @@ const version_1 = require("../version");
18
18
  const semver = require("semver");
19
19
  const default_1 = require("./default");
20
20
  const versioning_strategy_1 = require("../versioning-strategy");
21
- const DEPENDENCY_UPDATE_REGEX = /^deps: update dependency (.*) to (v.*)(\s\(#\d+\))?$/m;
21
+ const DEPENDENCY_UPDATE_REGEX = /^deps: update dependency (.*) to (v[^\s]*)(\s\(#\d+\))?$/m;
22
22
  /**
23
23
  * This VersioningStrategy looks at `deps` type commits and tries to
24
24
  * mirror the semantic version bump for that dependency update. For
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "release-please",
3
- "version": "13.4.15",
3
+ "version": "13.5.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",