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

Update all dependencies #14

Merged
merged 1 commit into from
Nov 21, 2023
Merged

Update all dependencies #14

merged 1 commit into from
Nov 21, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 29, 2022

Mend Renovate logo banner

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
postgres major 15-alpine -> 16-alpine age adoption passing confidence
io.kotest:kotest-assertions-core-jvm test minor 5.5.4 -> 5.8.0 age adoption passing confidence
io.kotest:kotest-runner-junit5-jvm test minor 5.5.4 -> 5.8.0 age adoption passing confidence
io.kotest:kotest-bom import minor 5.5.4 -> 5.8.0 age adoption passing confidence
io.mockk:mockk-jvm (source) compile patch 1.13.2 -> 1.13.8 age adoption passing confidence
org.postgresql:postgresql (source) compile minor 42.5.1 -> 42.7.0 age adoption passing confidence
com.fasterxml.jackson.module:jackson-module-kotlin compile minor 2.14.1 -> 2.16.0 age adoption passing confidence
io.quarkus:quarkus-maven-plugin build major 2.14.2.Final -> 3.5.2 age adoption passing confidence
io.quarkus:quarkus-panache-common major 2.14.2.Final -> 3.5.3 age adoption passing confidence
io.quarkus:quarkus-bom import major 2.14.2.Final -> 3.5.3 age adoption passing confidence
org.apache.maven.plugins:maven-surefire-plugin build minor 3.0.0-M7 -> 3.2.2 age adoption passing confidence
org.apache.maven.plugins:maven-compiler-plugin build minor 3.10.1 -> 3.11.0 age adoption passing confidence
org.jetbrains.kotlin:kotlin-maven-noarg (source) build minor 1.7.22 -> 1.9.20 age adoption passing confidence
org.jetbrains.kotlin:kotlin-maven-allopen (source) build minor 1.7.22 -> 1.9.20 age adoption passing confidence
org.jetbrains.kotlin:kotlin-maven-plugin (source) build minor 1.7.22 -> 1.9.20 age adoption passing confidence
org.jetbrains.kotlin:kotlin-test-junit5 (source) test minor 1.7.22 -> 1.9.20 age adoption passing confidence
org.jetbrains.kotlin:kotlin-stdlib-jdk8 (source) compile minor 1.7.22 -> 1.9.20 age adoption passing confidence
org.jetbrains.kotlin:kotlin-bom (source) import minor 1.7.22 -> 1.9.20 age adoption passing confidence

Release Notes

kotest/kotest (io.kotest:kotest-assertions-core-jvm)

v5.8.0

Compare Source

What's Changed
New Contributors

Full Changelog: kotest/kotest@v5.7.2...v5.8.0

v5.7.2

Compare Source

v5.7.1

Compare Source

v5.7.0

Compare Source

v5.6.2

Compare Source

5.6.2 May 2023

Assertions
Property testing
Documentation
Other

⚠️ Reverted behavior of Arb.string()

With Kotest 5.6.0, Codepoint.ascii() was changed to include a wider range of ascii chararacters, and Codepoint.printableAscii() was introduced with the historic range used by Codepoint.ascii().

Arb.string() has been using Codepoint.ascii() as it's default for generating chars for the string. This caused issues for some users, and we decided to revert Arb.string() to the historic behavior by changing the default to the new Codepoint.printableAscii().

Hopefully this doesn't cause any issues for you. If it does, you can revert to the 5.6.0 ~ 5.6.1 behavior by using Codepoint.ascii() explicitly.

If you added explicit usage of Codepoint.printableAscii() to circumvent the issue, you can safely remove the explicit parameter starting with Kotest 5.6.2.

New Contributors

Full Changelog: kotest/kotest@v5.6.1...v5.6.2

v5.6.1

Compare Source

Maintenance release, published since 5.6.0 failed to upload for some targets.

Breaking changes (from 5.5.5 -> 5.6.x)
  • Moved ConstantNow-related functions to a new module named io.kotest:kotest-extensions-now (remember to add -jvm suffix for Maven)
    • Add this module as a dependency to keep using withConstantNow
  • Remove Iterable checking logic from IterableEq (#​3420)

See full changelog at https://kotest.io/docs/changelog.html

v5.6.0

Compare Source

Breaking changes
  • Moved ConstantNow-related functions to a new module named io.kotest:kotest-extensions-now (remember to add -jvm suffix for Maven)
    • Add this module as a dependency to keep using withConstantNow
  • Remove Iterable checking logic from IterableEq (#​3420)

See full changelog at https://kotest.io/docs/changelog.html

v5.5.5

Compare Source

  • Support coroutineTestScope globally (#​3383)
  • Improved double and float tolerance messages (#​3355)
  • Nested Data Driven Tests is not displayed as nested in Intellij #​3341
  • Fixed writing seeds when test name contains a colon on windows (#​3304)
  • withClue() fails with EmptyStackException if a coroutine switches threads #​2447
  • Use TestDispatcher inside beforeInvocation callbacks (#​3363)
  • Make checkCoverage checking against provided pairs (#​3344)
  • Kotest runner junit5 jvm has vulnerable transative dependency CVE-2021-29425 #​3364
  • Fix sequence matchers for constrained sequences (#​3336)
  • Print full path in JunitXmlReporter when useTestPathAsName is enabled instead of just leaf and first parent #​3347
  • Support { } lambdas as lazy clues (#​3348)
  • Use 'language injection' on assertions, so embedded languages are easier to use in IntelliJ #​2916
  • Removing default location for htmlReporter and using the default value from the constructor (#​3306)
  • Arb.bigDecimal should generate decimals which terminate with all kinds of terminal digit #​3282
  • Check enums using equals method instead of scanning their properties (#​3291)
  • Add BlockHound support (#​3308)
  • Matchers return this. (#​2945)
  • Added shouldMatchResource, shouldNotMatchResource matchers (#​2945)
  • Added matchExactly matcher for Maps #​3246
  • Fix dumping config when systemProperty set to true (#​3275)
  • Returning the original failure when ErrorCollector has only collected a single failure (#​3269)
mockk/mockk (io.mockk:mockk-jvm)

v1.13.8

Compare Source

What's Changed

New Contributors

Full Changelog: mockk/mockk@1.13.7...1.13.8

v1.13.7

What's Changed

New Contributors

Full Changelog: mockk/mockk@1.13.5...1.13.7

v1.13.5

Compare Source

What's Changed
New Contributors

Full Changelog: mockk/mockk@v1.13.4...1.13.5

v1.13.4

Compare Source

What's Changed

New Contributors

Full Changelog: mockk/mockk@1.13.3...v1.13.4

v1.13.3

Compare Source

What's Changed

New Contributors

Full Changelog: mockk/mockk@1.13.2...1.13.3

pgjdbc/pgjdbc (org.postgresql:postgresql)

v42.7.0

Changed
  • fix: Deprecate for removal PGPoint.setLocation(java.awt.Point) to cut dependency to java.desktop module. PR #​2967
  • feat: return all catalogs for getCatalogs metadata query closes ISSUE #​2949 PR #​2953
  • feat: support SET statements combining with other queries with semicolon in PreparedStatement PR ##​2973
Fixed
  • chore: add styleCheck Gradle task to report style violations PR #​2980
  • fix: Include currentXid in "Error rolling back prepared transaction" exception message PR #​2978
  • fix: add varbit as a basic type inside the TypeInfoCache PR #​2960
  • fix: Fix failing tests for version 16. PR #​2962
  • fix: allow setting arrays with ANSI type name PR #​2952
  • feat: Use KeepAlive to confirm LSNs PR #​2941
  • fix: put double ' around log parameter PR #​2936 fixes ISSUE #​2935
  • fix: Fix Issue #​2928 number of ports not equal to number of servers in datasource PR #​2929
  • fix: Use canonical DateStyle name (#​2925) fixes pgbouncer issue
  • fix: Method getFastLong should be able to parse all longs PR #​2881
  • docs: Fix typos in info.html PR #​2860
  • fix: Return correct default from PgDatabaseMetaData.getDefaultTransactionIsolation PR #​2992 fixes Issue #​2991
  • test: fix assertion in RefCursorFetchTestultFetchSize rows
  • test: use try-with-resources in LogicalReplicationStatusTest

v42.6.0

Changed

fix: use PhantomReferences instead of Obejct.finalize() to track Connection leaks PR #​2847

The change replaces all uses of Object.finalize with PhantomReferences.
The leaked resources (Connections) are tracked in a helper thread that is active as long as
there are connections in use. By default, the thread keeps running for 30 seconds after all
the connections are released. The timeout is set with pgjdbc.config.cleanup.thread.ttl system property.

refactor:(loom) replace the usages of synchronized with ReentrantLock PR #​2635
Fixes Issue #​1951

v42.5.4

Fixed

fix: fix testGetSQLTypeQueryCache by searching for xid type. We used to search for box type but it is now cached. xid is not cached, this nuance is required for the test.
fix OidValueCorrectnessTest BOX_ARRAY OID, by adding BOX_ARRAY to the oidTypeName map [PR #​2810](https://github.com/pgjdbc/pgjdbc/pull/28100).
fixes Issue #​2804.
fix: Make sure that github CI runs tests on all(https://github.com/pgjdbc/pgjdbc/pull/2809)dbc/pgjdbc/pull/2809\)).

v42.5.3

Fixed

fix: Add box to TypeInfoCache, fixes Issue #​2746 PR #​2747
fix: regression in PgResultSet LONG_MIN copy and paste error fixes Issue #​2748 PR#2749

v42.5.2

Changed

regression: This release has 2 known regressions which make it unusable see the notes above. We advise people to use 42.5.3 instead.
docs: specify that timeouts are in seconds and there is a maximum. Housekeeping on some tests fixes #Issue 2671 PR #​2686
docs: clarify binaryTransfer and add it to README PR# 2698
docs: Document the need to encode reserved characters in the connection URL PR #​2700
feat: Define binary transfer for custom types dynamically/automatically fixes Issue #​2554 PR #​2556

Added

fix: added gssResponseTimeout as part of PR #​2687 to make sure we don't wait forever on a GSS RESPONSE

Fixed

fix: Ensure case of XML tags in Maven snippet is correct PR #​2682
fix: Make sure socket is closed if an exception is thrown in createSocket fixes Issue #​2684 PR #​2685
fix: Apply patch from Issue #​2683 to fix hanging ssl connections PR #​2687
fix - binary conversion of (very) long numeric values (longer than 4 * 2^15 digits) PR #​2697 fixes Issue #​2695
minor: enhance readability connection of startup params PR #​2705

quarkusio/quarkus (io.quarkus:quarkus-maven-plugin)

v3.5.2

Compare Source

Complete changelog
  • #​37120 - Bump Smallrye RM from 4.10.1 to 4.10.2
  • #​37104 - Make analytics tests more a bit more resilient
  • #​37090 - Add the actual coordinates of the MySQL driver
  • #​37070 - Security doc fix: Broken link and bad code snippet
  • #​37069 - Tiny tweaks based on QE feedback for Datasource guide
  • #​37068 - Updates infinispan client intelligence section
  • #​37058 - Bump com.fasterxml.jackson:jackson-bom from 2.15.2 to 2.15.3
  • #​37055 - Bump io.smallrye.config:smallrye-config-source-yaml from 3.4.1 to 3.4.4 in /devtools/gradle
  • #​37038 - Disable CustomManifestArgumentsTest on Windows
  • #​37032 - OpenAPI make sure basic auth auto detection work
  • #​37028 - Fix typos in reactive-sql-clients.adoc
  • #​37025 - Document how to log authentication failures for RESTEasy Reactive users migrating from the RESTEasy Classic
  • #​37019 - Address CVE-2023-21971 present in MySQL connector
  • #​37018 - Address CVE-2023-21971 present in MySQL connector
  • #​37015 - Bump org.eclipse.parsson:parsson from 1.1.4 to 1.1.5
  • #​37010 - Fix vale errors and some warnings in the OIDC Configuration Properties reference guide
  • #​37006 - Never register server specific providers in REST Client (fixed)
  • #​37003 - Small adjustments for documentation related content
  • #​37001 - Revert "Unblock SmallRye Health exposed routes"
  • #​36991 - Upgrade es-module-shims to 1.8.1
  • #​36985 - Generate a file with relations between guides

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot changed the title Update dependency io.mockk:mockk-jvm to v1.13.3 Update all dependencies Dec 6, 2022
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from dfd255e to b49d9d6 Compare December 28, 2022 12:47
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 2d6bf50 to a6e81db Compare January 10, 2023 15:15
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from ab4b6d3 to f4094ff Compare January 18, 2023 15:27
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 65b5b50 to 8f73821 Compare January 29, 2023 03:31
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from fe91679 to 1100b80 Compare May 31, 2023 03:27
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from aff84a3 to 532e17d Compare June 7, 2023 21:11
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from fe2704c to 5fb8487 Compare June 28, 2023 21:01
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from b170c6e to aa3b1f2 Compare July 21, 2023 15:35
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 0f17c32 to 32611cc Compare August 16, 2023 14:53
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 6a042a5 to 42b3e7a Compare August 28, 2023 23:00
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from cd7c3f0 to e6ec4dd Compare September 5, 2023 21:23
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 57c7f6b to 3a9ebe2 Compare September 20, 2023 13:59
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 6524883 to f12a19f Compare October 18, 2023 14:03
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 327d080 to d8c4f22 Compare October 30, 2023 20:41
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 94d0816 to 878d33c Compare November 8, 2023 14:27
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 2527996 to 58b1150 Compare November 20, 2023 21:12
@Davio Davio merged commit a6bc8f9 into master Nov 21, 2023
@renovate renovate bot deleted the renovate/all branch November 21, 2023 12:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant