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

build(deps): bump the dependencies group with 7 updates #3584

Merged
merged 1 commit into from
Nov 18, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 18, 2024

Bumps the dependencies group with 7 updates:

Package From To
com.amazonaws:aws-java-sdk-bom 1.12.777 1.12.778
org.quartz-scheduler:quartz 2.3.2 2.5.0
com.zaxxer:HikariCP 6.1.0 6.2.0
org.codehaus.mojo:versions-maven-plugin 2.17.1 2.18.0
com.github.kagkarlsson:db-scheduler 14.1.0 15.0.0
software.amazon.awssdk:bom 2.29.9 2.29.15
io.projectreactor:reactor-core 3.6.11 3.7.0

Updates com.amazonaws:aws-java-sdk-bom from 1.12.777 to 1.12.778

Changelog

Sourced from com.amazonaws:aws-java-sdk-bom's changelog.

1.12.778 2024-11-13

Amazon Kinesis Video Streams

  • Features

    • Update Netty version to 4.1.115.Final

1.12.774 2024-10-16

Amazon Simple Storage Service

  • Features

    • Add support for the new optional bucket-region and prefix query parameters in the ListBuckets API. For ListBuckets requests that express pagination, Amazon S3 will now return both the bucket names and associated AWS regions in the response.

1.12.771 2024-09-04

AWS SDK for Java

Amazon DynamoDB

  • Features

    • Add handler to generate the account endpoint for a request

1.12.770 2024-08-20

Amazon Simple Storage Service

  • Features

    • Amazon Simple Storage Service / Features : Add support for conditional writes for PutObject and CompleteMultipartUpload APIs.

1.12.769 2024-08-15

Amazon Simple Storage Service

  • Features

    • Amazon Simple Storage Service / Features : Adds support for pagination in the S3 ListBuckets API.

1.12.768 2024-08-14

AWS SDK for Java

  • Features

    • Update Java baseline version to Java 8 and bump Jackson library to 2.17.2

1.12.767 2024-07-30

AWS CodePipeline

  • Features

    • AWS CodePipeline V2 type pipelines now support stage level conditions to enable development teams to safely release changes that meet quality and compliance requirements.

AWS SDK for Java

AWS Telco Network Builder

  • Features

    • This release adds Network Service Update, through which customers will be able to update their instantiated networks to a new network package. See the documentation for limitations. The release also enhances the Get network operation API to return parameter overrides used during the operation.

Amazon AppStream

  • Features

    • Added support for Red Hat Enterprise Linux 8 on Amazon AppStream 2.0

... (truncated)

Commits

Updates org.quartz-scheduler:quartz from 2.3.2 to 2.5.0

Release notes

Sourced from org.quartz-scheduler:quartz's releases.

Quartz 2.5.0

Most Significant Changes This Release (over 2.4.0):

  • Move to Jakarta namespace

All changes/updates:

Open Issues

Completed Issues

Quartz 2.4.0

Most Significant Changes This Release:

  • Quartz 2.4.0 now requires minimum Java version of Java 8
  • Quartz build system moved to Gradle
  • 3rd party libraries (slf4j, log4j, Hikari, etc.) upgraded to more recent versions
  • Maven POMs generated from gradle declare 3rd party dependencies as "provided" scope
  • Removal of old TerracottaJobStore
  • "NativeJob" class removed from "quartz-jobs" artifact. This resolves security concerns related to code execution. While it is possible to safely use this Job class, it is a risk for users that don’t engage some thought. If you wish to still use this job or something like it, the source code for it can now be found as "example15".
  • Example programs can now simply be executed via gradle. See the "examples_guide.txt" file in the examples folder of the quartz repository for full description and info.

All changes/updates:

Open Issues

Completed Issues

Quartz 2.4.0 RC1

This is a Release Candidate for 2.4.0

Most Significant Changes This Release:

  • Quartz 2.4.0 now requires minimum Java version of Java 8
  • Quartz build system moved to Gradle
  • 3rd party libraries (slf4j, log4j, Hikari) upgraded to more recent versions
  • Maven POMs generated from gradle declare 3rd party dependencies as "provided" scope
  • Removal of old TerracottaJobStore
  • "NativeJob" class removed from "quartz-jobs" artifact. This resolves security concerns related to code execution. While it is possible to safely use this Job class, it is a risk for users that don’t engage some thought. If you wish to still use this job or something like it, the source code for it can now be found as "example15".
  • Example programs can now simply be executed via gradle. See the "exmaples_guide.txt" file in the examples folder of the quartz repository for full description and info.

All changes/updates:

Open Issues

Completed Issues

Commits
  • 05a497e Set quartzVersion to 2.5.0
  • d0403ee Merge pull request #1262 from jhouserizer/fix_javadoc_in_jepe
  • a7393a3 Fix javadoc errors in JobExecutionProcessException
  • cbe23a1 Merge pull request #1260 from ohksj77/handle-misfired-trigger-exception
  • 84204e6 Merge pull request #1257 from bcode2/quartz-2.5x-remove-redundant-initialization
  • 6ca2800 Merge pull request #1252 from konopka/fix_tomorrowat_returning_wrong_date_whe...
  • f31d0c8 Handle exceptions thrown while retrieving the misfired trigger
  • 6b474d6 refactor: remove-redundant-initialization
  • 33ef506 Merge pull request #1254 from konopka/fix_setrepeatinterval_accepts_invalid_v...
  • 94c890f Merge pull request #1253 from amergey/main
  • Additional commits viewable in compare view

Updates com.zaxxer:HikariCP from 6.1.0 to 6.2.0

Changelog

Sourced from com.zaxxer:HikariCP's changelog.

HikariCP Changes

Changes in 6.2.0

  • merged #2238 handle SQLTimeoutException without eviction. Users looking to preserve previous behavior should provide an implementation of com.zaxxer.hikari.SQLExceptionOverride to the pool configuration.

  • added new enum value, Override.MUST_EVICT, available to implementations of com.zaxxer.hikari.SQLExceptionOverride

  • enhanced debug logging in circumstances where the pool falls to zero size and new coonections to the database continue to fail.

  • update test dependencies that were flagged as having vulnerabilities

Changes in 6.1.0

  • fixed #1960 allow SQLExceptionOverride to adjudicate all exceptions for eviction

  • merged #1962 dropwizard 5 metrics are now supported via the setMetricRegistry() method in HikariConfig and in HikariDataSource

  • merged #2244 improve JavassistProxyFactory

  • merged #2243 fix inconsistency between isWrapperFor and unwrap

  • merged #1827 support loading properties file in unnamed resources module

  • merged #1842 don't clear isCommitStateDirty flag in setReadOnly

  • change default maxLifetime variance from 2.5% to 25% to further avoid mass connection die-off dips

Changes in 6.0.0

  • fixed #2152 duplicate connection in try with resources clause caused close() being called twice on each connection

  • merged #2226 consistent handling of errorCode and sqlState in timeout exception

  • merged #2199 eliminate network call if state get is called after set

  • merged #2189 add support to get and set db credentials in an atomic operation

  • merged #2149 make Savepoint rollbacks mark the connection dirty

  • merged #2157 close connections marked as evicted instead of returning them to the pool

  • merged #2147 skip Connection::setNetworkTimeout if PoolBase::shutdownNetworkTimeoutExecutor is called

  • merged #2126 added Support For beginRequest and endRequest

  • small improvements and cleanup from pull request #2166

... (truncated)

Commits
  • c6b5eea [maven-release-plugin] prepare release HikariCP-6.2.0
  • 14f2c6e update release version
  • d32e26e Update CHANGES
  • 5df12d6 Update README.md
  • ec6891a Expand/improve SQLExceptionOverride handling flexibility
  • c7cf4b3 Do not treat a SQLTimeoutException as an evictable offense (#2238)
  • 039942b Update README.md
  • 1695eb5 Update README.md
  • b9690a0 Update README.md
  • d20e547 upgrade commons-compress dependency due to security vulnerability (test scope...
  • Additional commits viewable in compare view

Updates org.codehaus.mojo:versions-maven-plugin from 2.17.1 to 2.18.0

Release notes

Sourced from org.codehaus.mojo:versions-maven-plugin's releases.

2.18.0

❗ NOTICE

Due to Doxia 2.x stack maven-site-plugin 3.20+ is required. https://cwiki.apache.org/confluence/display/MAVEN/Towards+Doxia+2.0.0+Stack

Changes

🚀 New features and improvements

🐛 Bug Fixes

📦 Dependency updates

📝 Documentation updates

... (truncated)

Commits
  • 814c9b1 [maven-release-plugin] prepare release 2.18.0
  • 64a3814 Upgrade to Doxia 2.x stack
  • a3ab213 Resolves #1060: Bugfix in UpdateParentMojo + add tests (#1181)
  • 380264f Remove implementation of dynamic version goal
  • 7e3b710 Drop Maven Wrapper from project
  • a9270bb Bump project version to 2.18.0-SNAPSHOT
  • d115f7a Moved to modello-stax. Removed "versionDefinition" from rule.mdo. (#1176)
  • 3841bb6 fix: Removed non-fully functional dynamic version goal (#1172)
  • a899699 Using Stax2 (Woodstox) instead of plexus-xml (Xpp) to process XML documents; ...
  • 8f48640 Bump byteBuddyVersion from 1.15.7 to 1.15.10
  • Additional commits viewable in compare view

Updates com.github.kagkarlsson:db-scheduler from 14.1.0 to 15.0.0

Release notes

Sourced from com.github.kagkarlsson:db-scheduler's releases.

v15.0.0

Changelog

🚀 Features

  • c3eace6 Adding the ability to prioritize tasks (#519). See upgrade notes.

🧰 Tasks

  • 97eb8d2 deps: upgrade logback to 1.2.13 (#543), closes #542
  • e50183e ci: Downgrade to Github Actions runner ubuntu-20.04 to avoid SQL Server problems (#545)

📝 Documentation

  • 28ce451 Update oracle_tables.sql (#549)
  • 60e06dc Added TOMRA as user (#531)

  • 292380a Fixed typo in the log msg of the SmokeTest class (#552)
  • c218e1f Add osoykan/db-scheduler-additions sections to the 3rd party list (#534), closes #526

Contributors

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

Commits
  • c3eace6 feat: Adding the ability to prioritize tasks (#519)
  • 292380a Fixed typo in the log msg of the SmokeTest class (#552)
  • 28ce451 docs: Update oracle_tables.sql (#549)
  • 97eb8d2 chore(deps): upgrade logback to 1.2.13 (#543)
  • e50183e chore(ci): Downgrade to Github Actions runner ubuntu-20.04 to avoid SQL Serve...
  • c218e1f Add osoykan/db-scheduler-additions sections to the 3rd party list (#534)
  • 60e06dc docs: Added TOMRA as user (#531)
  • See full diff in compare view

Updates software.amazon.awssdk:bom from 2.29.9 to 2.29.15

Updates io.projectreactor:reactor-core from 3.6.11 to 3.7.0

Release notes

Sourced from io.projectreactor:reactor-core's releases.

v3.7.0

Reactor Core 3.7.0 is part of 2024.0.0 Release Train.

New and Noteworthy

  • Reference documentation migrated to Antora
  • Improved Multi-Release-Jar experience

What's Changed

⚠️ Update considerations and deprecations

✨ New features and improvements

🐞 Bug fixes

📖 Documentation

New Contributors

Full Changelog: reactor/reactor-core@v3.6.9...v3.7.0

v3.7.0-RC1

... (truncated)

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

Bumps the dependencies group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [com.amazonaws:aws-java-sdk-bom](https://github.com/aws/aws-sdk-java) | `1.12.777` | `1.12.778` |
| [org.quartz-scheduler:quartz](https://github.com/quartz-scheduler/quartz) | `2.3.2` | `2.5.0` |
| [com.zaxxer:HikariCP](https://github.com/brettwooldridge/HikariCP) | `6.1.0` | `6.2.0` |
| [org.codehaus.mojo:versions-maven-plugin](https://github.com/mojohaus/versions) | `2.17.1` | `2.18.0` |
| [com.github.kagkarlsson:db-scheduler](https://github.com/kagkarlsson/db-scheduler) | `14.1.0` | `15.0.0` |
| software.amazon.awssdk:bom | `2.29.9` | `2.29.15` |
| [io.projectreactor:reactor-core](https://github.com/reactor/reactor-core) | `3.6.11` | `3.7.0` |


Updates `com.amazonaws:aws-java-sdk-bom` from 1.12.777 to 1.12.778
- [Changelog](https://github.com/aws/aws-sdk-java/blob/master/CHANGELOG.md)
- [Commits](aws/aws-sdk-java@1.12.777...1.12.778)

Updates `org.quartz-scheduler:quartz` from 2.3.2 to 2.5.0
- [Release notes](https://github.com/quartz-scheduler/quartz/releases)
- [Changelog](https://github.com/quartz-scheduler/quartz/blob/main/docs/changelog.adoc)
- [Commits](quartz-scheduler/quartz@v2.3.2...v2.5.0)

Updates `com.zaxxer:HikariCP` from 6.1.0 to 6.2.0
- [Changelog](https://github.com/brettwooldridge/HikariCP/blob/dev/CHANGES)
- [Commits](brettwooldridge/HikariCP@HikariCP-6.1.0...HikariCP-6.2.0)

Updates `org.codehaus.mojo:versions-maven-plugin` from 2.17.1 to 2.18.0
- [Release notes](https://github.com/mojohaus/versions/releases)
- [Changelog](https://github.com/mojohaus/versions/blob/master/ReleaseNotes.md)
- [Commits](mojohaus/versions@2.17.1...2.18.0)

Updates `com.github.kagkarlsson:db-scheduler` from 14.1.0 to 15.0.0
- [Release notes](https://github.com/kagkarlsson/db-scheduler/releases)
- [Changelog](https://github.com/kagkarlsson/db-scheduler/blob/master/jreleaser.yml)
- [Commits](kagkarlsson/db-scheduler@v14.1.0...v15.0.0)

Updates `software.amazon.awssdk:bom` from 2.29.9 to 2.29.15

Updates `io.projectreactor:reactor-core` from 3.6.11 to 3.7.0
- [Release notes](https://github.com/reactor/reactor-core/releases)
- [Commits](reactor/reactor-core@v3.6.11...v3.7.0)

---
updated-dependencies:
- dependency-name: com.amazonaws:aws-java-sdk-bom
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.quartz-scheduler:quartz
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: com.zaxxer:HikariCP
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: org.codehaus.mojo:versions-maven-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: com.github.kagkarlsson:db-scheduler
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: software.amazon.awssdk:bom
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: io.projectreactor:reactor-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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 Nov 18, 2024
@jknack jknack added this to the 3.5.4 milestone Nov 18, 2024
@jknack jknack merged commit 5fdc069 into 3.x Nov 18, 2024
0 of 5 checks passed
@dependabot dependabot bot deleted the dependabot/maven/dependencies-0572fe6d62 branch November 18, 2024 13:27
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.

1 participant