Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the prod-dependencies group across 1 directory with 8 updates #4053

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 31, 2025

Bumps the prod-dependencies group with 8 updates in the /libs/adsp-service-spring-sdk directory:

Package From To
com.github.victools:jsonschema-generator 4.27.0 4.37.0
io.socket:socket.io-client 2.1.0 2.1.1
org.apache.commons:commons-lang3 3.12.0 3.17.0
org.springdoc:springdoc-openapi-webflux-core 1.6.11 1.8.0
org.springdoc:springdoc-openapi-webmvc-core 1.6.11 1.8.0
org.apache.maven.plugins:maven-jar-plugin 3.3.0 3.4.2
org.apache.maven.plugins:maven-source-plugin 3.2.1 3.3.1
org.jacoco:jacoco-maven-plugin 0.8.8 0.8.12

Updates com.github.victools:jsonschema-generator from 4.27.0 to 4.37.0

Release notes

Sourced from com.github.victools:jsonschema-generator's releases.

4.37.0 – Dependency Updates, Bug Fixes, Minor Features

jsonschema-generator

Added

  • new Option.NULLABLE_ALWAYS_AS_ANYOF that avoids the "null" type being included with other type values, e.g. "type": ["object", "null"]

Changed

  • apply property name overrides before triggering the ignore check (i.e., provide both the declared and overridden property names if there is one)
  • update various (runtime/test/build-time) dependencies

Fixed

  • avoid exception when trying to collect supported enum values from raw Enum type (i.e., missing type parameter)
  • avoid exception when trying to find type with annotation when given type is null

jsonschema-module-jackson

Added

  • support @JacksonAnnotationsInside annotated combo annotations

Fixed

  • avoid exception in subtype resolution, when targeting void method
  • check for ignored properties excluded fields when a property name override makes it conflict with a non-conventional getter method

jsonschema-maven-plugin

Added

  • support <skipAbstractTypes> flag to exclude abstract types (not interfaces)
  • support <skipInterfaces> flag to exclude interface types

4.36.0 – Support Boolean const and Jackson "Accept Single Value as Array"

jsonschema-generator

Added

  • new Option.ACCEPT_SINGLE_VALUE_AS_ARRAY to support Jackson DeserializationFeature of the same name, i.e., when an array type is declared, an instance of a single item should also be accepted by the schema

Changed

  • consider Boolean values as valid in const/enum (i.e., no longer ignore them)

jsonschema-module-jakarta-validation

Added

  • populate const/enum based on @AssertTrue/@AssertFalse

4.35.0 – Custom Definitions for void Methods

Added

  • check for custom definitions for void methods (this may result in exceptions inside custom configuration if a null return type is not considered)

Changed

  • if present, apply custom definition for void methods

4.34.0 – JacksonModule inheritted JsonUnwrapped annotation fix

jsonschema-generator

Added

  • new Option.DUPLICATE_MEMBER_ATTRIBUTE_CLEANUP_AT_THE_END discards duplicate elements from member sub-schemas

... (truncated)

Changelog

Sourced from com.github.victools:jsonschema-generator's changelog.

[4.37.0] - 2024-11-11

jsonschema-generator

Added

  • new Option.NULLABLE_ALWAYS_AS_ANYOF that avoids the "null" type being included with other type values, e.g. "type": ["object", "null"]

Changed

  • apply property name overrides before triggering the ignore check (i.e., provide both the declared and overridden property names if there is one)
  • update various (runtime/test/build-time) dependencies

Fixed

  • avoid exception when trying to collect supported enum values from raw Enum type (i.e., missing type parameter)
  • avoid exception when trying to find type with annotation when given type is null

jsonschema-module-jackson

Added

  • support @JacksonAnnotationsInside annotated combo annotations

Fixed

  • avoid exception in subtype resolution, when targeting void method
  • check for ignored properties excluded fields when a property name override makes it conflict with a non-conventional getter method

jsonschema-maven-plugin

Added

  • support <skipAbstractTypes> flag to exclude abstract types (not interfaces)
  • support <skipInterfaces> flag to exclude interface types

[4.36.0] - 2024-07-20

jsonschema-generator

Added

  • new Option.ACCEPT_SINGLE_VALUE_AS_ARRAY to support Jackson DeserializationFeature of the same name, i.e., when an array type is declared, an instance of a single item should also be accepted by the schema

Changed

  • consider Boolean values as valid in const/enum (i.e., no longer ignore them)

jsonschema-module-jakarta-validation

Added

  • populate const/enum based on @AssertTrue/@AssertFalse

[4.35.0] - 2024-03-29

jsonschema-generator

Added

  • check for custom definitions for void methods (this may result in exceptions inside custom configuration if a null return type is not considered)

Changed

  • if present, apply custom definition for void methods

[4.34.0] - 2024-03-14

jsonschema-generator

Added

  • new Option.DUPLICATE_MEMBER_ATTRIBUTE_CLEANUP_AT_THE_END discard duplicate elements from member sub-schemas

... (truncated)

Commits

Updates io.socket:socket.io-client from 2.1.0 to 2.1.1

Release notes

Sourced from io.socket:socket.io-client's releases.

2.1.1

Bug Fixes

  • discard acknowledgements upon disconnection (54645ec)
  • make sendBuffer thread safe (#769) (b00ae8e)

Links

Changelog

Sourced from io.socket:socket.io-client's changelog.

2.1.1 / 2024-07-10

Bug Fixes

  • discard acknowledgements upon disconnection (54645ec)
  • make sendBuffer thread safe (#769) (b00ae8e)

1.0.2 / 2022-07-11

From the "1.x" branch.

Bug Fixes

  • ensure buffered events are sent in order (8bd35da)
  • ensure randomizationFactor is always between 0 and 1 (cb966d5)
  • ensure the payload format is valid (8664499)
  • fix usage with ws:// scheme (e57160a)
  • increase the readTimeout value of the default OkHttpClient (2d87497) (from engine.io-client)
Commits
  • 0e11f2f chore(release): prepare release socket.io-client-2.1.1
  • 54645ec fix: discard acknowledgements upon disconnection
  • b00ae8e fix: make sendBuffer thread safe (#769)
  • 774543e test: silence expected error (#757)
  • ad3a930 docs: how to run unit tests in Android Studio
  • 22518c9 docs: add changelog for version 1.0.2
  • 17d13c3 chore(release): prepare for next development iteration
  • See full diff in compare view

Updates org.apache.commons:commons-lang3 from 3.12.0 to 3.17.0

Updates org.springdoc:springdoc-openapi-webflux-core from 1.6.11 to 1.8.0

Updates org.springdoc:springdoc-openapi-webmvc-core from 1.6.11 to 1.8.0

Updates org.apache.maven.plugins:maven-jar-plugin from 3.3.0 to 3.4.2

Release notes

Sourced from org.apache.maven.plugins:maven-jar-plugin's releases.

3.4.2

🐛 Bug Fixes

👻 Maintenance

3.4.1

🐛 Bug Fixes

📦 Dependency updates

3.4.0

🚀 New features and improvements

🐛 Bug Fixes

📦 Dependency updates

👻 Maintenance

Commits
  • 95007e8 [maven-release-plugin] prepare release maven-jar-plugin-3.4.2
  • 99584ce Build with Maven 4
  • e9c98a4 [MJAR-310] fixed toolchain version detection when toolchain paths contain whi...
  • a5554bb [maven-release-plugin] prepare for next development iteration
  • 8b29adc [maven-release-plugin] prepare release maven-jar-plugin-3.4.1
  • 325b299 [MJAR-308] Bump org.apache.maven.plugins:maven-plugins from 41 to 42 (#85)
  • 52111cc [MJAR-307] Wrong version of commons-io cause a ClassNotFound o.a.commons.io.f...
  • 902d4c5 [maven-release-plugin] prepare for next development iteration
  • 992f44a [maven-release-plugin] prepare release maven-jar-plugin-3.4.0
  • 5e31b99 [MJAR-296] Allow including files excluded by default. (#67)
  • Additional commits viewable in compare view

Updates org.apache.maven.plugins:maven-source-plugin from 3.2.1 to 3.3.1

Commits
  • f80596e [maven-release-plugin] prepare release maven-source-plugin-3.3.1
  • 7626998 Bump apache/maven-gh-actions-shared from 3 to 4
  • 83c963c Bump org.apache.maven.plugins:maven-plugins from 39 to 41 (#18)
  • 40ae495 Bump org.codehaus.plexus:plexus-archiver from 4.8.0 to 4.9.1 (#20)
  • 073462b Bump org.apache.maven:maven-archiver from 3.6.0 to 3.6.1 (#21)
  • 0b1c823 Fix typos in AbstractSourceJarMojo exception
  • 099c65a [MSOURCES-142] Bump org.codehaus.plexus:plexus-archiver from 4.7.1 to 4.8.0 (...
  • 1edeea4 [MSOURCES-139] Fix typo in AbstractSourceJarMojo exception
  • 436966e [maven-release-plugin] prepare for next development iteration
  • 02a9847 [maven-release-plugin] prepare release maven-source-plugin-3.3.0
  • Additional commits viewable in compare view

Updates org.jacoco:jacoco-maven-plugin from 0.8.8 to 0.8.12

Release notes

Sourced from org.jacoco:jacoco-maven-plugin's releases.

0.8.12

New Features

  • JaCoCo now officially supports Java 22 (GitHub #1596).
  • Experimental support for Java 23 class files (GitHub #1553).

Fixed bugs

  • Branches added by the Kotlin compiler for functions with default arguments and having more than 32 parameters are filtered out during generation of report (GitHub #1556).
  • Branch added by the Kotlin compiler version 1.5.0 and above for reading from lateinit property is filtered out during generation of report (GitHub #1568).

Non-functional Changes

  • JaCoCo now depends on ASM 9.7 (GitHub #1600).

0.8.11

New Features

  • JaCoCo now officially supports Java 21 (GitHub #1520).
  • Experimental support for Java 22 class files (GitHub #1479).
  • Part of bytecode generated by the Java compilers for exhaustive switch expressions is filtered out during generation of report (GitHub #1472).
  • Part of bytecode generated by the Java compilers for record patterns is filtered out during generation of report (GitHub #1473).

Fixed bugs

  • Instrumentation should not cause VerifyError when the last local variable of method parameters is overridden in the method body to store a value of type long or double (GitHub #893).
  • Restore exec file compatibility with versions from 0.7.5 to 0.8.8 in case of class files with zero line numbers (GitHub #1492).

Non-functional Changes

  • jacoco-maven-plugin now requires at least Java 8 (GitHub #1466, #1468).
  • JaCoCo build now requires at least Maven 3.5.4 (GitHub #1467).
  • Maven 3.9.2 should not produce warnings for jacoco-maven-plugin (GitHub #1468).
  • JaCoCo build now requires JDK 17 (GitHub #1482).
  • JaCoCo now depends on ASM 9.6 (GitHub #1518).

0.8.10

Fixed bugs

  • Agent should not require configuration of permissions for SecurityManager outside of its codeBase (GitHub #1425).

0.8.9

New Features

  • JaCoCo now officially supports Java 19 and 20 (GitHub #1371, #1386).
  • Experimental support for Java 21 class files (GitHub #1386).
  • Add parameter to include the current project in the report-aggregate Maven goal (GitHub #1007).
  • Component accessors generated by the Java compilers for records are filtered out during generation of report. Contributed by Tesla Zhang (GitHub #1393).

Fixed bugs

  • Agent should not open java.lang package to unnamed module of the application class loader (GitHub #1334).

Non-functional Changes

  • JaCoCo now depends on ASM 9.5 (GitHub #1299, #1368, #1416).
  • JaCoCo build now requires JDK 11 (GitHub #1413).
Commits

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Jan 31, 2025
… 8 updates

Bumps the prod-dependencies group with 8 updates in the /libs/adsp-service-spring-sdk directory:

| Package | From | To |
| --- | --- | --- |
| [com.github.victools:jsonschema-generator](https://github.com/victools/jsonschema-generator) | `4.27.0` | `4.37.0` |
| [io.socket:socket.io-client](https://github.com/socketio/socket.io-client-java) | `2.1.0` | `2.1.1` |
| org.apache.commons:commons-lang3 | `3.12.0` | `3.17.0` |
| org.springdoc:springdoc-openapi-webflux-core | `1.6.11` | `1.8.0` |
| org.springdoc:springdoc-openapi-webmvc-core | `1.6.11` | `1.8.0` |
| [org.apache.maven.plugins:maven-jar-plugin](https://github.com/apache/maven-jar-plugin) | `3.3.0` | `3.4.2` |
| [org.apache.maven.plugins:maven-source-plugin](https://github.com/apache/maven-source-plugin) | `3.2.1` | `3.3.1` |
| [org.jacoco:jacoco-maven-plugin](https://github.com/jacoco/jacoco) | `0.8.8` | `0.8.12` |



Updates `com.github.victools:jsonschema-generator` from 4.27.0 to 4.37.0
- [Release notes](https://github.com/victools/jsonschema-generator/releases)
- [Changelog](https://github.com/victools/jsonschema-generator/blob/main/CHANGELOG.md)
- [Commits](victools/jsonschema-generator@v4.27.0...v4.37.0)

Updates `io.socket:socket.io-client` from 2.1.0 to 2.1.1
- [Release notes](https://github.com/socketio/socket.io-client-java/releases)
- [Changelog](https://github.com/socketio/socket.io-client-java/blob/main/History.md)
- [Commits](socketio/socket.io-client-java@socket.io-client-2.1.0...socket.io-client-2.1.1)

Updates `org.apache.commons:commons-lang3` from 3.12.0 to 3.17.0

Updates `org.springdoc:springdoc-openapi-webflux-core` from 1.6.11 to 1.8.0

Updates `org.springdoc:springdoc-openapi-webmvc-core` from 1.6.11 to 1.8.0

Updates `org.apache.maven.plugins:maven-jar-plugin` from 3.3.0 to 3.4.2
- [Release notes](https://github.com/apache/maven-jar-plugin/releases)
- [Commits](apache/maven-jar-plugin@maven-jar-plugin-3.3.0...maven-jar-plugin-3.4.2)

Updates `org.apache.maven.plugins:maven-source-plugin` from 3.2.1 to 3.3.1
- [Release notes](https://github.com/apache/maven-source-plugin/releases)
- [Commits](apache/maven-source-plugin@maven-source-plugin-3.2.1...maven-source-plugin-3.3.1)

Updates `org.jacoco:jacoco-maven-plugin` from 0.8.8 to 0.8.12
- [Release notes](https://github.com/jacoco/jacoco/releases)
- [Commits](jacoco/jacoco@v0.8.8...v0.8.12)

---
updated-dependencies:
- dependency-name: com.github.victools:jsonschema-generator
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: io.socket:socket.io-client
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
- dependency-name: org.apache.commons:commons-lang3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: org.springdoc:springdoc-openapi-webflux-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: org.springdoc:springdoc-openapi-webmvc-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: org.apache.maven.plugins:maven-jar-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: org.apache.maven.plugins:maven-source-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-dependencies
- dependency-name: org.jacoco:jacoco-maven-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/maven/libs/adsp-service-spring-sdk/prod-dependencies-7184b6f4b0 branch from 02abeb1 to 5c92a4e Compare February 3, 2025 00:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file java Pull requests that update Java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants