release-please 14.10.1 → 14.10.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,13 @@
4
4
 
5
5
  [1]: https://www.npmjs.com/package/release-please?activeTab=versions
6
6
 
7
+ ## [14.10.2](https://github.com/googleapis/release-please/compare/v14.10.1...v14.10.2) (2022-10-04)
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * **maven-workspace:** Preserve original pom.xml updater when bumping dependencies ([#1680](https://github.com/googleapis/release-please/issues/1680)) ([5d955c6](https://github.com/googleapis/release-please/commit/5d955c6e0c5896d2aedea08c5c0f12ac35972757))
13
+
7
14
  ## [14.10.1](https://github.com/googleapis/release-please/compare/v14.10.0...v14.10.1) (2022-10-03)
8
15
 
9
16
 
@@ -26,6 +26,7 @@ const pull_request_title_1 = require("../util/pull-request-title");
26
26
  const pull_request_body_1 = require("../util/pull-request-body");
27
27
  const branch_name_1 = require("../util/branch-name");
28
28
  const logger_1 = require("../util/logger");
29
+ const composite_1 = require("../updaters/composite");
29
30
  const JAVA_RELEASE_TYPES = new Set(['java', 'java-bom', 'java-yoshi', 'maven']);
30
31
  const XPATH_PROJECT_GROUP = '/*[local-name()="project"]/*[local-name()="groupId"]';
31
32
  const XPATH_PROJECT_ARTIFACT = '/*[local-name()="project"]/*[local-name()="artifactId"]';
@@ -149,7 +150,7 @@ class MavenWorkspace extends workspace_1.WorkspacePlugin {
149
150
  existingCandidate.pullRequest.updates =
150
151
  existingCandidate.pullRequest.updates.map(update => {
151
152
  if (update.path === (0, workspace_1.addPath)(existingCandidate.path, 'pom.xml')) {
152
- update.updater = updater;
153
+ update.updater = new composite_1.CompositeUpdater(update.updater, updater);
153
154
  }
154
155
  else if (update.updater instanceof changelog_1.Changelog) {
155
156
  if (dependencyNotes) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "release-please",
3
- "version": "14.10.1",
3
+ "version": "14.10.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",
@@ -63,7 +63,7 @@
63
63
  "gts": "^3.1.0",
64
64
  "mocha": "^9.2.2",
65
65
  "nock": "^13.0.0",
66
- "sinon": "14.0.0",
66
+ "sinon": "14.0.1",
67
67
  "snap-shot-it": "^7.0.0"
68
68
  },
69
69
  "dependencies": {