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

Bump the dependencies group with 5 updates #2535

Merged
merged 1 commit into from
Feb 18, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 17, 2025

Bumps the dependencies group with 5 updates:

Package From To
com.azure:azure-cosmos 4.66.0 4.66.1
com.oracle.database.jdbc:ojdbc8 23.6.0.24.10 23.7.0.25.01
org.xerial:sqlite-jdbc 3.48.0.0 3.49.0.0
com.yugabyte:jdbc-yugabytedb 42.7.3-yb-2 42.7.3-yb-3
org.mariadb.jdbc:mariadb-java-client 3.5.1 3.5.2

Updates com.azure:azure-cosmos from 4.66.0 to 4.66.1

Release notes

Sourced from com.azure:azure-cosmos's releases.

azure-cosmos_4.66.1

4.66.1 (2025-02-08)

Bugs Fixed

  • Fixed an issue in change feed processor where records are skipped and excessive requests are prefetched. - See PR 43788
  • Fixed small perf overhead due to NPE for readItem returning 404. - See PR 44008
  • Perform cross-region retry for Document reads when enclosing address requests hit request timeouts (408:10002). - See PR 43937

Other Changes

  • Added temporary internal-only option to enable thin client mode with system property COSMOS.THINCLIENT_ENABLED, setting the thin client endpoint with system property COSMOS.THINCLIENT_ENDPOINT, and default thin client endpoint with system property COSMOS.DEFAULT_THINCLIENT_ENDPOINT while the thin-client transport is still under development. This transport mode is not yet supported or ready to be used by external customers. Please don't use these configs in any production scenario yet. - PR 43188
  • Added a system property COSMOS.ITEM_SERIALIZATION_INCLUSION_MODE (environment variable COSMOS_ITEM_SERIALIZATION_INCLUSION_MODE) that allows customizing (Always, NonNull, NonEmpty, NonDefault) the JSON serialization inclusion mode when serializing items/documents. - See PR 44035 and PR 44114
Commits

Updates com.oracle.database.jdbc:ojdbc8 from 23.6.0.24.10 to 23.7.0.25.01

Updates org.xerial:sqlite-jdbc from 3.48.0.0 to 3.49.0.0

Release notes

Sourced from org.xerial:sqlite-jdbc's releases.

Release 3.49.0.0

Changelog

🚀 Features

sqlite

  • upgrade to sqlite 3.49.0 (3ef2146)

🛠 Build

deps

  • bump org.graalvm.sdk:nativeimage from 24.1.1 to 24.1.2 (2ced005)

deps-dev

  • bump org.assertj:assertj-core from 3.27.2 to 3.27.3 (cea714f)

Contributors

We'd like to thank the following people for their contributions: Gauthier, Gauthier Roebroeck

Commits
  • 3c697e8 chore(release): 3.49.0.0 [skip ci]
  • a08886a chore: update native libraries
  • 3ef2146 feat(sqlite): upgrade to sqlite 3.49.0
  • 2ced005 build(deps): bump org.graalvm.sdk:nativeimage from 24.1.1 to 24.1.2
  • cea714f build(deps-dev): bump org.assertj:assertj-core from 3.27.2 to 3.27.3
  • 7509257 chore(release): prepare next snapshot [skip ci]
  • See full diff in compare view

Updates com.yugabyte:jdbc-yugabytedb from 42.7.3-yb-2 to 42.7.3-yb-3

Release notes

Sourced from com.yugabyte:jdbc-yugabytedb's releases.

YugabyteDB Smart JDBC Driver 42.7.3-yb-3

This driver is based on the PostgreSQL driver and forked from https://github.com/pgjdbc/pgjdbc

Also, available on the maven coordinates:

<dependency>
    <groupId>com.yugabyte</groupId>
    <artifactId>jdbc-yugabytedb</artifactId>
    <version>42.7.3-yb-3</version>
</dependency>

Driver documentation link: https://docs.yugabyte.com/latest/integrations/smart-driver/

What's Changed

Full Changelog: yugabyte/pgjdbc@v42.7.3-yb-2...v42.7.3-yb-3

Commits
  • e66dc1e If host and public_ip are same, always attempt connecting to host addresses (...
  • See full diff in compare view

Updates org.mariadb.jdbc:mariadb-java-client from 3.5.1 to 3.5.2

Release notes

Sourced from org.mariadb.jdbc:mariadb-java-client's releases.

MariaDB Connector/Java 3.5.2

3.5.2 (Feb 2025)

Full Changelog

Bugs Fixed

  • CONJ-1216 Resolved a performance issue that occurred when batch processing on MySQL and older MariaDB (pre-10.2) servers
  • CONJ-1218 Incorrect behavior where XA connections are closed when regular connections are terminated - this is against specifications
  • CONJ-1217 The trustCertificateKeyStorePassword alias parameter isn’t taken into account
  • CONJ-1221 DatabaseMetadata.getTypeInfo() is missing the data types UUID and VECTOR
  • CONJ-1225 System throws an exception prematurely without checking all available connections
  • CONJ-1228 result-set.getObject() on BLOB type returns Blob in place of byte[]
  • CONJ-660 new disconnectOnExpiredPasswords connection option that controls client behavior when connecting with an expired password. When set to true (default), the client disconnects if it detects an expired password. When false, the client maintains the connection and allows setting a new password.
  • CONJ-1229 Permit executeQuery commands to not return a result-set
Changelog

Sourced from org.mariadb.jdbc:mariadb-java-client's changelog.

3.5.2 (Feb 2025)

Full Changelog

Bugs Fixed

  • CONJ-1216 Resolved a performance issue that occurred when batch processing on MySQL and older MariaDB (pre-10.2) servers
  • CONJ-1218 Incorrect behavior where XA connections are closed when regular connections are terminated - this is against specifications
  • CONJ-1217 The trustCertificateKeyStorePassword alias parameter isn’t taken into account
  • CONJ-1221 DatabaseMetadata.getTypeInfo() is missing the data types UUID and VECTOR
  • CONJ-1225 System throws an exception prematurely without checking all available connections
  • CONJ-1228 result-set.getObject() on BLOB type returns Blob in place of byte[]
  • CONJ-660 new disconnectOnExpiredPasswords connection option that controls client behavior when connecting with an expired password. When set to true (default), the client disconnects if it detects an expired password. When false, the client maintains the connection and allows setting a new password.
  • CONJ-1229 Permit executeQuery commands to not return a result-set
Commits
  • 16ffe8e [misc] removing metadata getTypeInfo listing BOOL to BOOLEAN change to avoid ...
  • 9e53e68 [misc] changelog update
  • 3331508 [CONJ-1229] Permit executeQuery commands to not return a result-set
  • b2d3f59 [misc] ensure test stability sith mysql servers
  • 79cefb8 [CONJ-660] support expired password
  • 63991b7 [misc] code style correction
  • 39ee017 [CONJ-1228] result-set.getObject() on BLOB type returns Blob by default in pl...
  • a86e330 [misc] improve no cache benchmark
  • b3a3735 [misc] correcting javadoc
  • 6ce18d5 [misc] update copyright header
  • 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 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

Bumps the dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [com.azure:azure-cosmos](https://github.com/Azure/azure-sdk-for-java) | `4.66.0` | `4.66.1` |
| com.oracle.database.jdbc:ojdbc8 | `23.6.0.24.10` | `23.7.0.25.01` |
| [org.xerial:sqlite-jdbc](https://github.com/xerial/sqlite-jdbc) | `3.48.0.0` | `3.49.0.0` |
| [com.yugabyte:jdbc-yugabytedb](https://github.com/yugabyte/pgjdbc) | `42.7.3-yb-2` | `42.7.3-yb-3` |
| [org.mariadb.jdbc:mariadb-java-client](https://github.com/mariadb-corporation/mariadb-connector-j) | `3.5.1` | `3.5.2` |


Updates `com.azure:azure-cosmos` from 4.66.0 to 4.66.1
- [Release notes](https://github.com/Azure/azure-sdk-for-java/releases)
- [Commits](Azure/azure-sdk-for-java@azure-cosmos_4.66.0...azure-cosmos_4.66.1)

Updates `com.oracle.database.jdbc:ojdbc8` from 23.6.0.24.10 to 23.7.0.25.01

Updates `org.xerial:sqlite-jdbc` from 3.48.0.0 to 3.49.0.0
- [Release notes](https://github.com/xerial/sqlite-jdbc/releases)
- [Changelog](https://github.com/xerial/sqlite-jdbc/blob/master/CHANGELOG)
- [Commits](xerial/sqlite-jdbc@3.48.0.0...3.49.0.0)

Updates `com.yugabyte:jdbc-yugabytedb` from 42.7.3-yb-2 to 42.7.3-yb-3
- [Release notes](https://github.com/yugabyte/pgjdbc/releases)
- [Changelog](https://github.com/yugabyte/pgjdbc/blob/master/CHANGELOG.md)
- [Commits](yugabyte/pgjdbc@v42.7.3-yb-2...v42.7.3-yb-3)

Updates `org.mariadb.jdbc:mariadb-java-client` from 3.5.1 to 3.5.2
- [Release notes](https://github.com/mariadb-corporation/mariadb-connector-j/releases)
- [Changelog](https://github.com/mariadb-corporation/mariadb-connector-j/blob/master/CHANGELOG.md)
- [Commits](mariadb-corporation/mariadb-connector-j@3.5.1...3.5.2)

---
updated-dependencies:
- dependency-name: com.azure:azure-cosmos
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.oracle.database.jdbc:ojdbc8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: org.xerial:sqlite-jdbc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: com.yugabyte:jdbc-yugabytedb
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.mariadb.jdbc:mariadb-java-client
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Feb 17, 2025
@dependabot dependabot bot requested review from a team, komamitsu, brfrn169, feeblefakie and Torch3333 and removed request for a team February 17, 2025 19:38
@brfrn169 brfrn169 merged commit 25037cd into master Feb 18, 2025
48 checks passed
@dependabot dependabot bot deleted the dependabot/gradle/dependencies-f3a89d4c98 branch February 18, 2025 02:57
feeblefakie pushed a commit that referenced this pull request Feb 18, 2025
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
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 improvement java Pull requests that update Java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants