Update Minor & patch dependency updates#32
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
0884d07 to
f8b6641
Compare
45abaa7 to
a1fbc81
Compare
445a9f5 to
ec9651f
Compare
e70a9a6 to
07f79a5
Compare
d191587 to
93db640
Compare
87b6df0 to
8021a62
Compare
1e3002d to
af72a4e
Compare
0675ef0 to
4445aa5
Compare
6ad8811 to
dd80658
Compare
dd80658 to
0380bbf
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.16.5→1.17.03.1.0→3.3.02.13.2→2.14.03.1.0→3.3.06.4.1→6.4.212.3.0→12.10.012.3.0→12.10.07.0.2→7.1.042.7.11→42.7.121.5.32→1.5.378.0.01→8.0.42.6.2→2.6.42.3.20→2.4.02.3.20→2.4.0Release Notes
micrometer-metrics/micrometer (io.micrometer:micrometer-registry-prometheus)
v1.17.0: 1.17.0See also the 1.17 migration guide and the release notes for 1.17.0-RC1, 1.17.0-M3, 1.17.0-M2, 1.17.0-M1.
🐞 Bug Fixes
📔 Documentation
🔨 Dependency Upgrades
❤️ Contributors
Thank you to all the contributors who worked on this release:
@blaspat, @codingkiddo, @izeye, @jewoodev, and @schiemon
v1.16.6: 1.16.6🐞 Bug Fixes
📔 Documentation
🔨 Dependency Upgrades
❤️ Contributors
Thank you to all the contributors who worked on this release:
@blaspat, @codingkiddo, @izeye, @jewoodev, and @schiemon
freya022/BotCommands (io.github.freya022:BotCommands-jda-ktx)
v3.3.0Changes
Modals
bindToinside a label, as it is from the modal DSLjda-ktx
Guild#retrieveThreadChannelByIdnow throwsParentGuildMismatchExceptionif the retrieved thread isn't from the same guildOrNullvariants will returnnullin those casesNew features
App. Commands. Declarative
ofSubcommandsto the application command managerslashCommand(name, function = null) { ... }jda-ktx
JDA#retrieveThreadChannelById(OrNull)Fixes
Modals
nullDon't hesitate to check out the examples and the wiki.
Full Changelog: freya022/BotCommands@v3.2.1...v3.3.0
Installation
As a reminder, the minimum Java version supported is Java 17.
Kotlin Gradle
repositories { mavenCentral() } dependencies { implementation("io.github.freya022:BotCommands:3.3.0") }Maven
v3.2.1Small bugfix release.
Fixes
Components
org.postgresql.util.PSQLException: Cannot change transaction read-only property in the middle of a transaction.Misc
java.lang.IllegalArgumentException: argument type mismatchsometimes occurring when dispatching events in parallelDon't hesitate to check out the examples and the wiki.
Full Changelog: freya022/BotCommands@v3.2.0...v3.2.1
Installation
As a reminder, the minimum Java version supported is Java 17.
Kotlin Gradle
repositories { mavenCentral() } dependencies { implementation("io.github.freya022:BotCommands:3.2.1") }Maven
v3.2.0Changes
Dependencies
Text commands
Fixes
Text commands
Modals
Misc
objectinstance methodsDon't hesitate to check out the examples and the wiki.
Full Changelog: freya022/BotCommands@v3.1.0...v3.2.0
Installation
As a reminder, the minimum Java version supported is Java 17.
Kotlin Gradle
repositories { mavenCentral() } dependencies { implementation("io.github.freya022:BotCommands:3.2.0") }Maven
discord-jda/JDA (net.dv8tion:JDA)
v6.4.2New Features
NO_MUTUAL_GUILDSErrorResponse by @srnyx in #3083ErrorResponse#CANNOT_FORWARD_UNREADABLE_MESSAGEby @freya022 in #3087Changes
Bug Fixes
Full Changelog: discord-jda/JDA@v6.4.1...v6.4.2
Installation
Gradle
Maven
pgjdbc/pgjdbc (org.postgresql:postgresql)
v42.7.12Security
Added
reWriteBatchedInsertsnow merges up to 32768 rows into one multi-valuesINSERT(bounded by the 65535 bind-parameter limit on the extended protocol) instead of capping at 128, which speeds up batches of few-column rows. The newreWriteBatchedInsertsSizeconnection property lowers that cap when set; the default of0uses that maximum.autosave=ALWAYS. Controlled by the newflushCacheOnDdlconnection property (defaulttrue); set tofalsefor the prior behaviour.connectExecutorconnection property to customize theExecutorused to run the worker task that performs the connection attempt whenloginTimeoutis in effect. The value is the fully qualified name of a class implementingjava.util.concurrent.Executor. With a null value, the default, the driver retains the prior behavior of running the connection attempt on a daemon thread named"PostgreSQL JDBC driver connection thread". The executor must run the task on a thread other than the caller's. Running the attempt on a named thread lets applications that monitor driver-created threads identify it.connectThreadFactoryconnection property to customize theThreadFactoryused to spawn the worker thread that runs the connection attempt whenloginTimeoutis in effect. The value is the fully qualified name of a class implementingjava.util.concurrent.ThreadFactory. With a null value, the default, the driver retains the prior behavior of using a daemon thread named"PostgreSQL JDBC driver connection thread". Useful for testing timeout behaviour or for applications that want detailed control of all driver-created threads.classLoaderStrategyconnection property to control which classloaders the driver searches when loading a class named by a connection property, for examplesocketFactory. The defaultdriver-firstnow falls back to the thread context classloader when the driver's classloader cannot resolve the class, which fixes class loading in non-flat class paths such as Quarkus and OSGi. Setdriverto keep the previous driver-classloader-only behaviour, orcontext-firstto prefer the thread context classloader Issue #2112Changed
loginTimeoutis now aFutureTask(ConnectTask) instead of the hand-rolledConnectThread. When the caller hits the timeout, the task is now cancelled withcancel(true), which interrupts the worker thread rather than letting it run to completion. This makes the connection attempt interruptible, sologinTimeoutcan stop a slow connection attempt instead of leaking a thread. As before, a connection that the worker still manages to establish after the caller gives up is closed by the worker so that it does not leak. There are no public API changes and this should only lead to faster background resource cleanup for connections that time out.PGXAConnection.ConnectionHandlernow rejectssetAutoCommit(false)andsetSavepoint(...)during an active XA branch, in addition to the long-rejectedsetAutoCommit(true)/commit()/rollback(). ThesetSavepointrejection was already meant to be in place but the guard misspelled the method name assetSavePoint, so savepoints silently went through. Both changes bring the proxy in line with JTA 1.2 §3.4.commitPrepared/rollback-of-prepared now returnXAER_RMFAILinstead ofXAER_RMERRwhen the underlying connection is left in a non-idleTransactionState. Transaction managers (Geronimo, Narayana, Atomikos) treatXAER_RMFAILas retryable on a freshXAResource; the prepared transaction is no longer abandoned.Fixed
postgresql-<version>.jarand its detached PGP signature, taken from the same signed build that is uploaded to Maven Central, instead of a leftover SNAPSHOT jar Issue #3812 PR #3814Statement#cancelstate machine by dropping the redundantCANCELLEDstate.killTimerTasknow waits for the state to return toIDLEdirectly, which removes a spin-forever case when more than one thread observes the cancel completing PR #1827.BEGINand the following query to share a network flush Issue #3894reWriteBatchedInsertsno longer throwsIllegalArgumentExceptionwhen batching a parameterlessINSERT(for exampleINSERT INTO t VALUES (1, 2)) of 256 rows or more.CALLin aCallableStatementno longer hides the native call, so OUT parameter registration works for/* comment */ call proc(?, ?)and similar.Parser.modifyJdbcCallnow skips leading whitespace and SQL comments (both--and/* */) before the call, tolerates a trailing comment after a{ ... }escape, and no longer adds a spurious comma when moving an OUT parameter into a call whose arguments are only a comment Issue #2538PreparedStatement.toString()no longer throws for abyteavalue supplied as text viaPGobject. Hex-format values (\x...) are validated and rendered as abytealiteral, and escape-format values are quoted and cast like any other literal Issue #3757contextClassLoaderof sharedForkJoinPool.commonPool()worker threads, which previously left unrelated tasks on those threads running with anullclassloader Issue #4155PGXAConnectionno longer saves and restores the underlying connection's JDBCautoCommitflag. All XA-protocol SQL (BEGIN,PREPARE TRANSACTION,COMMIT,ROLLBACK,COMMIT PREPARED,ROLLBACK PREPARED, therecover()SELECT) is sent throughQUERY_SUPPRESS_BEGIN, so the caller'sautoCommitvalue is invariant across everyXAResourcecall. Fixes the "2nd phase commit must be issued using an idle connection" failure during recovery on managed datasources that pool connections withautoCommit=false(TomEE, WildFly, WebSphere Liberty).PGXAConnection.prepare()now mutates XA state only afterPREPARE TRANSACTIONsucceeds. A failedPREPAREpreviously left the driver thinking the branch was already prepared, so the follow-uprollback(xid)triedROLLBACK PREPAREDagainst a non-existent gid and returnedXAER_RMERR. Transaction managers (Narayana) escalated this toHeuristicMixedException. With the fix,rollback(xid)takes the active-branch path and issues a plainROLLBACK, which the server accepts cleanly. Fixes Issue #3153, Issue #3123.search_path. When two schemas held a table with the same name and the same primary or unique index name but a different set of key columns, the driver took the union of both schemas' columns, so the result set could be wrongly rejected as not updatable PR #4214. Supersedes PR #3400.oshai/kotlin-logging (io.github.oshai:kotlin-logging-jvm)
v8.0.4Compare Source
Align to semver.
Full Changelog: oshai/kotlin-logging@8.0.03...8.0.4
v8.0.03Compare Source
What's Changed
Full Changelog: oshai/kotlin-logging@8.0.02...8.0.03
v8.0.02Compare Source
What's Changed
Full Changelog: oshai/kotlin-logging@8.0.01...8.0.02
reformator14/stacktrace-decoroutinator (dev.reformator.stacktracedecoroutinator:stacktrace-decoroutinator-jvm)
v2.6.4: 2.6.4fix #81
v2.6.3: 2.6.3fix #79
JetBrains/kotlin (org.jetbrains.kotlin.plugin.serialization)
v2.4.0v2.3.21: Kotlin 2.3.21Changelog
Backend. Wasm
KT-84610[Wasm] Failed to compile klibs in IC modeCompiler
KT-84566Prevent launching Default dispatcher threads from IJ SDK in kotlin compilerKT-85358Native: roll back the workaround for KT-84678 once MapLibre has been properly fixedKT-85626@JvmRecordin commonMain breaks compileCommonMainKotlinMetadata with "Cannot access 'java.lang.Record'"KT-85405Postpone/RevertDontIgnoreUpperBoundViolatedOnImplicitArgumentsKT-84678K/N: Undefined symbol from SPM-added ObjC frameworks when linking iOS targetKT-85021False positive SUBCLASS_CANT_CALL_COMPANION_PROTECTED_NON_STATIC error in multi-module projectJavaScript
KT-82395Support top-level declarations from compiler plugins in JS incremental compilationKT-84475K/JS: false-positive exportability warnings in multi-module projectKT-84633Kotlin/JS: "Serializer for class not found" error when IR output granularity iswhole-programKT-85047Kotlin/JS:@JsStaticon suspend fun of class companion generates incorrect d.tsKT-84517K/JS: bad mappings data in outputted Kotlin stdlib source mapLibraries
KT-71848Kotlinx.metadata: AddCompilerPluginDatainto Km APINative. C and ObjC Import
KT-85399Kotlin/Native: TypeCastException when casting ObjC Protocol MetaClass with genericSafeCasts enabledKT-85508K/N: TypeCastException when using nw_parameters_create_secure_tcp block parameter on 2.3.20Tools. Gradle
KT-84729Update Gradle plugin-publish version to enable configuration cache badge on Gradle plugins portalTools. Gradle. Compiler plugins
KT-85257AGP/Compose: MergeMappingFileTask clears R8 artifacts due to@OutputDirectoryannotation on AGP 9.1+Tools. Scripts
KT-85105Scripts: JVM backend internal error (IR lowering) when scratch file contains anonymous objectKT-85103Exception while generating code when explain destructuring declsKT-84842scriptCompilationClasspathFromContext behavior changed from 2.3.10 to 2.3.20KT-85029Kotlin Scripting: ScriptDiagnostic reports "at null" instead of error locationTools. Statistics (FUS)
KT-85628KGP: composite build FUS metrics fail on access of 'configurationTimeMetrics'Configuration
📅 Schedule: (UTC)
🚦 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.
This PR was generated by Mend Renovate. View the repository job log.