Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ jobs:
java-version: "18"
cache: "gradle"
- name: Validate Gradle wrapper
# v4.4.1
uses: gradle/actions/wrapper-validation@6a96db5a3f33ee3428706da0bfc3de5c5a8f698c
uses: gradle/actions/wrapper-validation@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2
- name: Build package
run: ./gradlew build
7 changes: 4 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,11 @@ jobs:
java-version: "18"
cache: "gradle"
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@f9c9c575b8b21b6485636a91ffecd10e558c62f6
uses: gradle/actions/wrapper-validation@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2
- name: Publish package
uses: gradle/gradle-build-action@093dfe9d598ec5a42246855d09b49dc76803c005
uses: gradle/actions/setup-gradle@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2
with:
arguments: publish
arguments: arguments
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

2 changes: 1 addition & 1 deletion .github/workflows/regen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
java-version: "18"
cache: "gradle"
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@f9c9c575b8b21b6485636a91ffecd10e558c62f6
uses: gradle/actions/wrapper-validation@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2
- name: Generate code
run: |
make clone-proto
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.0.36"
".": "0.0.37"
}
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [0.0.37](https://github.com/cloudquery/plugin-pb-java/compare/v0.0.36...v0.0.37) (2025-10-16)


### Bug Fixes

* **deps:** Update dependency com.google.protobuf:protobuf-java-util to v4.33.0 ([#199](https://github.com/cloudquery/plugin-pb-java/issues/199)) ([1a808a4](https://github.com/cloudquery/plugin-pb-java/commit/1a808a48cf4fc64c887aea09cb016950cd266f80))
* **deps:** Update dependency gradle to v9 ([#201](https://github.com/cloudquery/plugin-pb-java/issues/201)) ([dc8d5d3](https://github.com/cloudquery/plugin-pb-java/commit/dc8d5d308f784036f1b164ac6d36cf0c98e457b3))
* **deps:** Update grpc-java monorepo to v1.76.0 ([#200](https://github.com/cloudquery/plugin-pb-java/issues/200)) ([fec3901](https://github.com/cloudquery/plugin-pb-java/commit/fec3901a3dd1792a20b178df2341c88fd2fcb1f6))

## [0.0.36](https://github.com/cloudquery/plugin-pb-java/compare/v0.0.35...v0.0.36) (2025-10-01)


Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ application {

group 'io.cloudquery'
// x-release-please-start-version
version = '0.0.36'
version = '0.0.37'
// x-release-please-end

repositories {
Expand Down
Loading