Skip to content

chore(deps): bump the other-dependencies group across 3 directories with 3 updates - #959

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/samples/kotlin-mcp-client/other-dependencies-6cc257f651
Closed

chore(deps): bump the other-dependencies group across 3 directories with 3 updates#959
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/samples/kotlin-mcp-client/other-dependencies-6cc257f651

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 17, 2026

Copy link
Copy Markdown
Contributor

Bumps the other-dependencies group with 1 update in the /samples/kotlin-mcp-client directory: com.anthropic:anthropic-java.
Bumps the other-dependencies group with 1 update in the /samples/kotlinlang-mcp-server directory: ch.qos.logback:logback-classic.
Bumps the other-dependencies group with 1 update in the /samples/simple-streamable-server directory: org.junit.jupiter:junit-jupiter.

Updates com.anthropic:anthropic-java from 2.52.0 to 2.54.0

Release notes

Sourced from com.anthropic:anthropic-java's releases.

v2.54.0

2.54.0 (2026-08-13)

Full Changelog: v2.53.0...v2.54.0

Features

  • api: add output_behavior to dream creation (create a new memory store or update the input store in place) (a49ea9a)
  • client: add StructuredOutputConfig for combining Class<T> structured outputs with other output options (#192) (8caead3)
  • client: typed discriminator enum accessor on discriminated unions (3333df7)
  • vertex: allow overriding the base URL (#343) (2663a25)

Bug Fixes

  • client: add models (1c84fd2)
  • client: align skills Body.of() with custom multipart files type (#189) (fd17ff7)
  • client: convert enum values to the param enum class in toParam() (31ca943)
  • client: delegate type() in StructuredContentBlock wrappers (#191) (1194dae)
  • client: don't throw when accumulating a tool call truncated by max_tokens (#200) (711d1d8)
  • messages: accumulate an empty tool_use input as {} rather than missing (#382) (68c8ae1)
  • streaming: apply all message_delta fields when accumulating streamed messages (#197) (4530957)

Chores

  • ci: run breaking-change detection as a ci.yml job on every push (db3a17b)
  • internal: codegen related update (0f36423)

Documentation

  • api: clarify that user profile name is optional for resold profiles (ab0287e)
  • contributing: describe the mock server the scripts actually run (#384) (0a17d61)

v2.53.0

2.53.0 (2026-08-07)

Full Changelog: v2.52.0...v2.53.0

Features

  • api: add mid-conversation-tool-changes-2026-07-01 beta (02bf73e)
  • api: add support for session budgets, advisor tool, pinned inference location and skills auto-loading from GitHub (ae84c87)
  • client: add accessors for properties shared across union variants (c61dd17)

Bug Fixes

  • client: add id()/toolUseId() delegating accessors to StructuredContentBlock wrappers (#183) (c69c3a3)

... (truncated)

Changelog

Sourced from com.anthropic:anthropic-java's changelog.

2.54.0 (2026-08-13)

Full Changelog: v2.53.0...v2.54.0

Features

  • api: add output_behavior to dream creation (create a new memory store or update the input store in place) (a49ea9a)
  • client: add StructuredOutputConfig for combining Class<T> structured outputs with other output options (#192) (8caead3)
  • client: typed discriminator enum accessor on discriminated unions (3333df7)
  • vertex: allow overriding the base URL (#343) (2663a25)

Bug Fixes

  • client: add models (1c84fd2)
  • client: align skills Body.of() with custom multipart files type (#189) (fd17ff7)
  • client: convert enum values to the param enum class in toParam() (31ca943)
  • client: delegate type() in StructuredContentBlock wrappers (#191) (1194dae)
  • client: don't throw when accumulating a tool call truncated by max_tokens (#200) (711d1d8)
  • messages: accumulate an empty tool_use input as {} rather than missing (#382) (68c8ae1)
  • streaming: apply all message_delta fields when accumulating streamed messages (#197) (4530957)

Chores

  • ci: run breaking-change detection as a ci.yml job on every push (db3a17b)
  • internal: codegen related update (0f36423)

Documentation

  • api: clarify that user profile name is optional for resold profiles (ab0287e)
  • contributing: describe the mock server the scripts actually run (#384) (0a17d61)

2.53.0 (2026-08-07)

Full Changelog: v2.52.0...v2.53.0

Features

  • api: add mid-conversation-tool-changes-2026-07-01 beta (02bf73e)
  • api: add support for session budgets, advisor tool, pinned inference location and skills auto-loading from GitHub (ae84c87)
  • client: add accessors for properties shared across union variants (c61dd17)

Bug Fixes

  • client: add id()/toolUseId() delegating accessors to StructuredContentBlock wrappers (#183) (c69c3a3)

... (truncated)

Commits
  • eccf824 release: 2.54.0
  • 320ddd0 docs(api): clarify that user profile name is optional for resold profiles
  • 26dd4eb fix(client): convert enum values to the param enum class in toParam()
  • f12c95d fix(client): don't throw when accumulating a tool call truncated by max_token...
  • 987579a fix(streaming): apply all message_delta fields when accumulating streamed mes...
  • bc65576 feat(client): add StructuredOutputConfig for combining Class<T> structured ou...
  • 0d5b9a4 fix(messages): accumulate an empty tool_use input as {} rather than missing (...
  • 1e43f43 fix(client): delegate type() in StructuredContentBlock wrappers (#191)
  • 4ce300c feat(vertex): allow overriding the base URL (#343)
  • 2a78232 docs(contributing): describe the mock server the scripts actually run (#384)
  • Additional commits viewable in compare view

Updates ch.qos.logback:logback-classic from 1.6.1 to 1.6.2

Release notes

Sourced from ch.qos.logback:logback-classic's releases.

Logback 1.6.2

clean.full.1.6.2.mp4

2026-08-10 Release of logback version 1.6.2

  • Configuration analysis now detects contradictory caller-data inclusion instructions. For example, an AsyncAppender, SocketAppender or SMTPAppender with includeCallerData left at the default false is incompatible with a layout or encoder pattern that uses a caller-data converter such as %C, %M, %L, %F, %l or %caller. At runtime those converters would print question marks and still incur extraction cost on a worker thread. Logback now emits a configuration-time warning when such instructions disagree. See codes.html#callerContradiction for details. This issue was reported in issues/1059 by leeychee. The initial analysis was contributed by seonwoo_jung.

  • Caller-contradiction analysis can be turned off by setting the logback.skipCallerContradictionAnalysis variable to true, either as a system property (-Dlogback.skipCallerContradictionAnalysis=true) or as a property in the configuration file:

    <property name="logback.skipCallerContradictionAnalysis" value="true"/>
  • SimpleSocketServer and SimpleSSLSocketServer now require an explicit client IP whitelist. On the command line, pass one or more allowed addresses (single IPs or CIDR ranges) after the configuration file. An empty whitelist means no clients are accepted. When embedding the server programmatically, register allowed addresses with addAllowedClientAddress(String) or setAllowedClientAddresses(Collection) before clients connect. See the documentation on restricting client access.

  • Added ThrowableProxyVOBuilder for assembling a ThrowableProxyVO field by field, with a corresponding ThrowableProxyVO.builder() entry point.

  • Dependency analysis handlers now run their postHandle method after child models have been processed, so checks that depend on nested appenders (such as caller-contradiction analysis) see a complete picture.

  • Updated several dependencies, including Angus Mail to 2.0.4 and Jetty (test) to 12.1.12.

  • A bit-wise identical binary of this version can be reproduced by building from source code at commit e3d78330ad1ba024fd987fd00c3ffb9cfcdb07dc associated with the tag v_1.6.2. The release was built using Java "21" 2023-10-17 LTS build 21.0.1.+12-LTS-29 under Linux Debian 11.6.

Commits
  • e3d7833 prepare release 1.6.2
  • 919127d test for skipping contradiction analysis
  • 67dcd40 allow skipping caller contradiction analysis
  • 2619c6d remove unused message string in CallerContradictionWarnAnalyser
  • 22cfade add support for SMTPAppender in caller data contradiction analysis
  • 656fb6d minor javadoc change in SMTPAppenderBase
  • efb1ce2 cover SocketAppender in caller contradiction analysis
  • d3a01f8 more tests for caller contradiction analysis
  • b1a80d6 more complete logic in caller contradiction analysis
  • 0678954 SimpleSocketServer and SLLSimpleSocketServer now accept whitelisted
  • Additional commits viewable in compare view

Updates org.junit.jupiter:junit-jupiter from 6.1.2 to 6.1.3

Release notes

Sourced from org.junit.jupiter:junit-jupiter's releases.

JUnit 6.1.3 = Platform 6.1.3 + Jupiter 6.1.3 + Vintage 6.1.3

See Release Notes.

Full Changelog: junit-team/junit-framework@r6.1.2...r6.1.3

Commits
  • f59f60d Release 6.1.3
  • cd8ec92 Finalize 6.1.3 release notes
  • c8729f2 Restore compatibility with GraalVM 25 (#5901)
  • ddc9e74 Update graalvm/setup-graalvm action to v1.6.4 (#5959)
  • fe2c52a Update plugin org.graalvm.buildtools.native to v1.1.7 (#5923)
  • 62afc02 Delay GraalVM plugin updates for 3 days
  • 0cc2902 Skip graalVmTest task if GraalVM env vars are not set
  • f6bbfc5 Move GraalVM tests to separate test task (#5903)
  • e87e052 Update plugin org.graalvm.buildtools.native to v1.1.6 (#5899)
  • 1cd56df Update plugin org.graalvm.buildtools.native to v1.1.5 (#5880)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…ith 3 updates

Bumps the other-dependencies group with 1 update in the /samples/kotlin-mcp-client directory: [com.anthropic:anthropic-java](https://github.com/anthropics/anthropic-sdk-java).
Bumps the other-dependencies group with 1 update in the /samples/kotlinlang-mcp-server directory: [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback).
Bumps the other-dependencies group with 1 update in the /samples/simple-streamable-server directory: [org.junit.jupiter:junit-jupiter](https://github.com/junit-team/junit-framework).


Updates `com.anthropic:anthropic-java` from 2.52.0 to 2.54.0
- [Release notes](https://github.com/anthropics/anthropic-sdk-java/releases)
- [Changelog](https://github.com/anthropics/anthropic-sdk-java/blob/main/CHANGELOG.md)
- [Commits](anthropics/anthropic-sdk-java@v2.52.0...v2.54.0)

Updates `ch.qos.logback:logback-classic` from 1.6.1 to 1.6.2
- [Release notes](https://github.com/qos-ch/logback/releases)
- [Commits](qos-ch/logback@v_1.6.1...v_1.6.2)

Updates `org.junit.jupiter:junit-jupiter` from 6.1.2 to 6.1.3
- [Release notes](https://github.com/junit-team/junit-framework/releases)
- [Commits](junit-team/junit-framework@r6.1.2...r6.1.3)

---
updated-dependencies:
- dependency-name: com.anthropic:anthropic-java
  dependency-version: 2.54.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other-dependencies
- dependency-name: ch.qos.logback:logback-classic
  dependency-version: 1.6.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other-dependencies
- dependency-name: org.junit.jupiter:junit-jupiter
  dependency-version: 6.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Dependency updates kotlin Kotlin-related changes samples Sample projects and examples labels Aug 17, 2026
@dependabot @github

dependabot Bot commented on behalf of github Aug 24, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Aug 24, 2026
@dependabot
dependabot Bot deleted the dependabot/gradle/samples/kotlin-mcp-client/other-dependencies-6cc257f651 branch August 24, 2026 07:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Dependency updates kotlin Kotlin-related changes samples Sample projects and examples

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants