From f1d4f3471077dd67c0b892467e4a69b6639178ec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 05:08:46 +0000 Subject: [PATCH 1/3] Bump com.vanniktech.maven.publish from 0.34.0 to 0.35.0 Bumps [com.vanniktech.maven.publish](https://github.com/vanniktech/gradle-maven-publish-plugin) from 0.34.0 to 0.35.0. - [Release notes](https://github.com/vanniktech/gradle-maven-publish-plugin/releases) - [Changelog](https://github.com/vanniktech/gradle-maven-publish-plugin/blob/main/CHANGELOG.md) - [Commits](https://github.com/vanniktech/gradle-maven-publish-plugin/compare/0.34.0...0.35.0) --- updated-dependencies: - dependency-name: com.vanniktech.maven.publish dependency-version: 0.35.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index eedd9a8..1187967 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ plugins { id 'java-library' id 'maven-publish' id 'signing' - id 'com.vanniktech.maven.publish' version '0.34.0' + id 'com.vanniktech.maven.publish' version '0.35.0' id 'net.researchgate.release' version '3.1.0' } From 2abe88e0e26c0022bbbed99653ee463c5878d286 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Dec 2025 05:06:19 +0000 Subject: [PATCH 2/3] Bump org.apache.commons:commons-text from 1.14.0 to 1.15.0 Bumps [org.apache.commons:commons-text](https://github.com/apache/commons-text) from 1.14.0 to 1.15.0. - [Changelog](https://github.com/apache/commons-text/blob/master/RELEASE-NOTES.txt) - [Commits](https://github.com/apache/commons-text/compare/rel/commons-text-1.14.0...rel/commons-text-1.15.0) --- updated-dependencies: - dependency-name: org.apache.commons:commons-text dependency-version: 1.15.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 1187967..35d75ca 100644 --- a/build.gradle +++ b/build.gradle @@ -47,7 +47,7 @@ dependencies { // Other dependencies (moved to test scope for library) implementation 'org.passay:passay:1.6.6' implementation 'com.google.guava:guava:33.5.0-jre' - implementation 'org.apache.commons:commons-text:1.14.0' + implementation 'org.apache.commons:commons-text:1.15.0' compileOnly 'jakarta.validation:jakarta.validation-api:3.1.1' compileOnly 'org.springframework.retry:spring-retry' From 6f45f7a6056a163f82531ee469c43ddd43cad8f3 Mon Sep 17 00:00:00 2001 From: Devon Hillard Date: Tue, 9 Dec 2025 11:56:36 -0700 Subject: [PATCH 3/3] Switch Claude Code Review action to use API key MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change from CLAUDE_CODE_OAUTH_TOKEN to ANTHROPIC_API_KEY due to OAuth token format issues with the GitHub Action. See: https://github.com/anthropics/claude-code-action/issues/727 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .github/workflows/claude-code-review.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/claude-code-review.yml b/.github/workflows/claude-code-review.yml index 1d74e19..be5201d 100644 --- a/.github/workflows/claude-code-review.yml +++ b/.github/workflows/claude-code-review.yml @@ -35,7 +35,7 @@ jobs: id: claude-review uses: anthropics/claude-code-action@v1 with: - claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} + anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} prompt: | REPO: ${{ github.repository }} PR NUMBER: ${{ github.event.pull_request.number }}