Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: googleapis/java-shared-config
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.14.2
Choose a base ref
...
head repository: googleapis/java-shared-config
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.14.3
Choose a head ref
  • 3 commits
  • 7 files changed
  • 2 contributors

Commits on Feb 6, 2025

  1. fix: introducing "flatten" profile to use the plugin (#984)

    The plugin is not needed in this project but it's used in the
    downstream Java repositories.
    
    By specifying the profile in "Build with Airlock" check, we can
    ensure the required dependencies are available in Airlock.
    suztomo authored Feb 6, 2025
    Copy the full SHA
    436aa7c View commit details

Commits on Feb 10, 2025

  1. chore(main): release 1.14.3-SNAPSHOT (#983)

    🤖 I have created a release *beep* *boop*
    ---
    
    
    ### Updating meta-information for bleeding-edge SNAPSHOT release.
    
    ---
    This PR was generated with [Release Please](https://togithub.com/googleapis/release-please). See [documentation](https://togithub.com/googleapis/release-please#release-please).
    release-please[bot] authored Feb 10, 2025
    Copy the full SHA
    07fe80a View commit details

Commits on Feb 18, 2025

  1. chore(main): release 1.14.3 (#985)

    Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
    release-please[bot] authored Feb 18, 2025
    Copy the full SHA
    3af81dd View commit details
Showing with 27 additions and 7 deletions.
  1. +1 −1 .cloudbuild/cloudbuild-test-a.yaml
  2. +1 −1 .cloudbuild/cloudbuild-test-b.yaml
  3. +1 −1 .cloudbuild/cloudbuild.yaml
  4. +7 −0 CHANGELOG.md
  5. +15 −2 java-shared-config/pom.xml
  6. +1 −1 native-image-shared-config/pom.xml
  7. +1 −1 versions.txt
2 changes: 1 addition & 1 deletion .cloudbuild/cloudbuild-test-a.yaml
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@

timeout: 7200s # 2 hours
substitutions:
_JAVA_SHARED_CONFIG_VERSION: '1.14.2' # {x-version-update:google-cloud-shared-config:current}
_JAVA_SHARED_CONFIG_VERSION: '1.14.3' # {x-version-update:google-cloud-shared-config:current}

steps:
# GraalVM A build
2 changes: 1 addition & 1 deletion .cloudbuild/cloudbuild-test-b.yaml
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@

timeout: 7200s # 2 hours
substitutions:
_JAVA_SHARED_CONFIG_VERSION: '1.14.2' # {x-version-update:google-cloud-shared-config:current}
_JAVA_SHARED_CONFIG_VERSION: '1.14.3' # {x-version-update:google-cloud-shared-config:current}

steps:
# GraalVM B build
2 changes: 1 addition & 1 deletion .cloudbuild/cloudbuild.yaml
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@

timeout: 7200s # 2 hours
substitutions:
_JAVA_SHARED_CONFIG_VERSION: '1.14.2' # {x-version-update:google-cloud-shared-config:current}
_JAVA_SHARED_CONFIG_VERSION: '1.14.3' # {x-version-update:google-cloud-shared-config:current}
steps:
# GraalVM A build
- name: gcr.io/cloud-builders/docker
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.14.3](https://github.com/googleapis/java-shared-config/compare/v1.14.2...v1.14.3) (2025-02-18)


### Bug Fixes

* Introducing "flatten" profile to use the plugin ([#984](https://github.com/googleapis/java-shared-config/issues/984)) ([436aa7c](https://github.com/googleapis/java-shared-config/commit/436aa7c9e9914a830e3172ae0ee93131bb641e07))

## [1.14.2](https://github.com/googleapis/java-shared-config/compare/v1.14.1...v1.14.2) (2025-02-05)


17 changes: 15 additions & 2 deletions java-shared-config/pom.xml
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-shared-config</artifactId>
<packaging>pom</packaging>
<version>1.14.2</version><!-- {x-version-update:google-cloud-shared-config:current} -->
<version>1.14.3</version><!-- {x-version-update:google-cloud-shared-config:current} -->
<name>Google Cloud Shared Config</name>
<url>https://github.com/googleapis/java-shared-config</url>
<description>
@@ -16,7 +16,7 @@
<parent>
<groupId>com.google.cloud</groupId>
<artifactId>native-image-shared-config</artifactId>
<version>1.14.2</version><!-- {x-version-update:google-cloud-shared-config:current} -->
<version>1.14.3</version><!-- {x-version-update:google-cloud-shared-config:current} -->
<relativePath>../native-image-shared-config</relativePath>
</parent>

@@ -728,5 +728,18 @@
</plugins>
</build>
</profile>
<profile>
<!-- Profile to use the flatten plugin. This is useful for testing
the availability of the dependencies in Airlock. -->
<id>flatten</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
2 changes: 1 addition & 1 deletion native-image-shared-config/pom.xml
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@
<groupId>com.google.cloud</groupId>
<artifactId>native-image-shared-config</artifactId>
<packaging>pom</packaging>
<version>1.14.2</version><!-- {x-version-update:google-cloud-shared-config:current} -->
<version>1.14.3</version><!-- {x-version-update:google-cloud-shared-config:current} -->
<name>Native Image Shared Config</name>
<url>https://github.com/googleapis/java-shared-config</url>
<description>
2 changes: 1 addition & 1 deletion versions.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Format:
# module:released-version:current-version

google-cloud-shared-config:1.14.2:1.14.2
google-cloud-shared-config:1.14.3:1.14.3