chore(deps): update upgrade all gradle dependencies#90
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
chore(deps): update upgrade all gradle dependencies#90renovate[bot] wants to merge 1 commit intomainfrom
renovate[bot] wants to merge 1 commit intomainfrom
Conversation
d2a830a to
737b455
Compare
84ef0cf to
0290a02
Compare
e118364 to
935e247
Compare
935e247 to
4c3496d
Compare
4c3496d to
7758599
Compare
7758599 to
7d8f429
Compare
f99efcc to
e3495d2
Compare
e3495d2 to
246c4f2
Compare
4b610cf to
364300a
Compare
364300a to
4c4adf3
Compare
4c4adf3 to
546cfa8
Compare
546cfa8 to
3afba30
Compare
bc6f6d2 to
dd4075d
Compare
dd4075d to
3045080
Compare
3045080 to
1dcccd4
Compare
1dcccd4 to
246b25f
Compare
b42dc8c to
731a989
Compare
731a989 to
84fbee0
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:
3.2.0→3.4.13.2.0→3.4.13.2.0→3.4.13.2.0→3.4.10.28.0→0.31.01.8.1→1.10.00.6.2→0.7.1-0.6.x-compat5.0.3→5.1.02.1.21→2.3.102.1.21→2.3.10Release Notes
ktorio/ktor (io.ktor:ktor-serialization-kotlinx-json)
v3.4.1Compare Source
Improvements
Bugfixes
kty=ECandalg=nullvalidatemethod claim that it's optional, but it isn'tv3.4.0Compare Source
Features
respondResourceImprovements
formData's block inlineBugfixes
defaultRequestdue to function name collision with io.ktor.http.headersExpiresdates of Set-Cookie headercaPathis not set by default in the Curl client on linuxArm64IceServer.urlsshould be a list.getPluginIdmethod error with Kotlin 2.3.0-RCaudio/x-matroskais wrongly recognized asmkvtypeHttpClient.configConnection: Keep-Aliveheader, which is incompatible with HTTP/2junit-jupiterruntime dependency, causes conflictsv3.3.3Compare Source
Improvements
Bugfixes
v3.3.2Compare Source
Improvements
Bugfixes
maxFrameSizeoption has no effect (KTOR-6963)v3.3.1Compare Source
Improvements
Bugfixes
v3.3.0Features
Improvements
var Route.staticRootFolder: File?should be deprecated (KTOR-5836)image/bmpto the ContentType (KTOR-8735)Bugfixes
v3.2.3Compare Source
Improvements
yamlas the configuration file suffix (KTOR-8712)Bugfixes
\r\n(KTOR-8687)v3.2.2Compare Source
Improvements
eventbeforedata(KTOR-8627)Bugfixes
client.sse()acts like a REST call and not a stream in test environment (KTOR-7910)v3.2.1Compare Source
Improvements
Bugfixes
socket.awaitClosed(hangs indefinitely) since 3.2.0 (KTOR-8618)Kotlin/kotlinx.atomicfu (org.jetbrains.kotlinx:atomicfu)
v0.31.0Compare Source
v0.30.0Compare Source
0.30.0-beta, so the0.30.0release only updates the version and includes exactly the same changes as version0.30.0.v0.29.0Compare Source
Kotlin/kotlinx.serialization (org.jetbrains.kotlinx:kotlinx-serialization-json)
v1.10.0==================
This release is based on Kotlin 2.3.0 and contains all of the changes from 1.10.0-RC.
The only additional change is a fix for ProtoBuf packing of Kotlin unsigned types (#3079).
Big thanks to KosmX for contributing the fix.
Stabilization of APIs
kotlinx-serialization 1.10 and subsequent releases will be focused on stabilization of existing APIs.
The following APIs and configuration options are no longer experimental because they're widely used without any known major issues:
Jsonconfiguration options:decodeEnumsCaseInsensitive,allowTrailingComma,allowComments, andprettyPrintIndent. (#3100)@EncodeDefaultannotation and its modes. (#3106)JsonUnquotedLiteralconstructor function (#2900)JsonPrimitiveconstructor function overloads that accept unsigned types. (#3117)JsonElementwithNothing?overloads. (#3117)Readiness for return value checker
Kotlin 2.3.0 introduces a new feature aimed
at helping you to catch bugs related to the accidentally ignored return value of the function.
kotlinx-serialization 1.10.0-RC code is fully marked for this feature, meaning that you
can get warnings for unused function calls like
Json.encodeToString(...).To get the warnings, the feature has to be enabled in your project as described here.
Polymorphism improvements
Polymorphic serialization received a couple of improvements in this release:
New
subclassesOfSealedutility to automatically register sealed subclasses serializers in polymorphic modules (#2201).Use it in your
SerializersModulewhen configuring a polymorphic hierarchy which contains both abstract and sealed classes.For example, when root of your hierarchy is an
interface, but most of your inheritors aresealedclasses.The new function will register all known sealed subclasses for you, so you don’t need to list them one by one.
This makes writing your
SerializerModules much faster and simpler.Big thanks to Paul de Vrieze for contributing this feature.
Class discriminator conflict check rework (#3105).
If a payload already contains a property with the same name as the configured discriminator (for example,
type),it is called a class discriminator conflict.
To produce a correct output and allow more inputs to be deserialized at the same time, the following changes were made:
JsonNamingStrategytransformations are now detected during serialization as well and will causeSerializationException.It also affects non-polymorphic classes.
ClassDisciminatorMode.ALL_JSON_OBJECTSandSerializersModuleBuilder.polymorphicDefaultSerializerare also detected.Previously, it was possible in the sealed hierarchies alone due to missing assertion. See #1664 for details.
General improvements
.serialNametoMissingFieldExceptionfor clearer diagnostics. (#3114)Automatic-Module-Nameentries for metadata JARs. (#3109)Bugfixes
BIGNUM_NEGATIVEtag name. (#3090)v1.9.0==================
This release updates Kotlin version to 2.2.0, includes several bugfixes and provides serializers for kotlin.time.Instant.
Add kotlin.time.Instant serializers
Instant class was moved from kotlinx-datetime library to Kotlin standard library.
As a result, kotlinx-datetime 0.7.0 no longer has serializers for the Instant class.
To use new kotlin.time.Instant class in your @Serializable classes,
you can use this 1.9.0 kotlinx-serialization version (Kotlin 2.2 is required).
You can choose between default
InstantSerializerwhich uses its string representation,or specify
InstantComponentSerializerthat represents instant as its components.See details in the PR.
Other bugfixes
Kotlin/kotlinx-datetime (org.jetbrains.kotlinx:kotlinx-datetime)
v0.7.1-0.6.x-compatv0.7.1kotlinx.datetime.Instantandkotlinx.datetime.Clocktype aliases to, respectively,kotlin.time.Instantandkotlin.time.Clockto make migration more convenient.v0.7.0-0.6.x-compatv0.7.0Breaking changes:
kotlinx.datetime.Instantandkotlinx.datetime.Clockin favor ofkotlin.time.Instant(#506). See https://github.com/Kotlin/kotlinx-datetime?tab=readme-ov-file#deprecation-of-instant for a description of what to do if this causes problems.LocalDateandLocalDateTimevalues on all platforms (#432).dayOfMonthtoday,monthNumbertomonth(#84).DayOfWeekandMonthno longer type aliases tojava.time.DayOfWeekandjava.time.Month(#96)."UTC"and not"Z"be the timezone identifier forTimeZone.UTC(#474)."z"inTimeZone.of, with the same meaning as"Z"(#529).DateTimeFormat-basedKSerializerimplementations for datetime entities, and change the default serializers to be based ontoString/parsepairs (#415).Additions:
java.io.Serializableimplementations for most of the entities in the library (#143). Thanks for spotting and fixing a potential vulnerability, @lukellmann!LocalDateRange, a range ofLocalDatevalues (#190). Thanks, @PeterAttardo!YearMonthandYearMonthRange(#457).Tweaks and fixes:
timeZoneId()directive (#444).timeZoneId()directive, allowing parsing values not present in the timezone database (#531).DateTimeComponentsvalue (#471).kotlinx.serialization.coreto be optional (#496).ajalt/clikt (com.github.ajalt.clikt:clikt)
v5.1.0Compare Source
Added
inputEventsparameter toCliktCommand.testoverloads for simulating terminal input. (#630)defaultLazyto mutually exclusive options. (#616)choice()that accept aListof choices. (#596)Changed
prompt()options will report a missing option instead of prompting when the terminal is not interactive. You can passinputInteractive = truetoCliktCommand.testto testprompt(). (#622)SuspendingNoOpCliktCommandis nowopento matchNoOpCliktCommand. (#613)uint()andulong()option values. (#624)Fixed
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.
This PR was generated by Mend Renovate. View the repository job log.