Skip to content

fix: update sample-dependencies#79

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/sample-dependencies
Open

fix: update sample-dependencies#79
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/sample-dependencies

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Nov 27, 2024

This PR contains the following updates:

Package Change Age Confidence
org.jetbrains.kotlinx:kotlinx-serialization-json 1.7.31.11.0 age confidence
androidx.compose:compose-bom 2024.11.002024.12.01 age confidence
androidx.activity:activity-compose (source) 1.9.31.13.0 age confidence
androidx.lifecycle:lifecycle-viewmodel-compose (source) 2.8.72.10.0 age confidence
androidx.lifecycle:lifecycle-runtime-ktx (source) 2.8.72.10.0 age confidence
androidx.core:core-ktx (source) 1.15.01.18.0 age confidence
org.jetbrains.kotlin.plugin.serialization 2.0.212.3.21 age confidence

Release Notes

Kotlin/kotlinx.serialization (org.jetbrains.kotlinx:kotlinx-serialization-json)

v1.11.0

==================

This release is based on Kotlin 2.3.20 and provides new Json exceptions API and some bugfixes and improvements.

Expose Json exceptions structure

To make working with exceptions easier and providing proper error codes in e.g., REST APIs,
classes JsonException, JsonDecodingException, and JsonEncodingException are now public.
They have relevant public properties, such as shortMessage, path, offset, and others.
This API is currently experimental, and we're going to improve it further in the subsequent releases.
See the linked issues for the details: #​1930, #​1877.

Ability to hide user input from exception messages for security/privacy reasons.

Historically, exception messages in kotlinx.serialization often included the input Json itself for debuggability reason.
Such behavior may pose additional challenges for logging, analytics, and other systems, since
a system is not always allowed to store user data due to privacy/security reasons, which imposes additional sanitation logic.
To address this issue, a new property exceptionsWithDebugInfo is added to JsonConfiguration.
Disable it to hide user input from exception messages.
IMPORTANT: This behavior will be enabled by default when this property becomes stable.
See #​2590 for more details.

Bugfixes and improvements

  • CBOR: Relax value range check when decoding numbers (#​3167)
  • Use a specialized writeDecimalLong method for IO stream integrations in Json (#​3152)

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.

For your convenience, the changelog for 1.10.0-RC is duplicated below:

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:

  • Json configuration options: decodeEnumsCaseInsensitive, allowTrailingComma, allowComments, and prettyPrintIndent. (#​3100)
  • @EncodeDefault annotation and its modes. (#​3106)
  • JsonUnquotedLiteral constructor function (#​2900)
  • JsonPrimitive constructor function overloads that accept unsigned types. (#​3117)
  • JSON DSL functions on JsonElement with Nothing? 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 subclassesOfSealed utility to automatically register sealed subclasses serializers in polymorphic modules (#​2201).
Use it in your SerializersModule when 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 are sealed classes.
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:

  • Conflicts introduced by JsonNamingStrategy transformations are now detected during serialization as well and will cause SerializationException.
    It also affects non-polymorphic classes.
  • Conflicts from ClassDisciminatorMode.ALL_JSON_OBJECTS and SerializersModuleBuilder.polymorphicDefaultSerializer are also detected.
  • It is allowed to deserialize such a conflicting key for both sealed and open polymorphic hierarchies.
    Previously, it was possible in the sealed hierarchies alone due to missing assertion. See #​1664 for details.

General improvements

  • Add .serialName to MissingFieldException for clearer diagnostics. (#​3114)
  • Generate unique Automatic-Module-Name entries for metadata JARs. (#​3109)
  • Revised ProGuard rules and added R8 tests. (#​3041)
  • CBOR: Improved error message when a byte string/array type mismatch is encountered. (#​3052)

Bugfixes

  • Fix the type in the BIGNUM_NEGATIVE tag name. (#​3090)
  • CBOR: Fix various bugs in the decoder implementation to be more strict and consistent with the specification.

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 InstantSerializer which uses its string representation,
or specify InstantComponentSerializer that represents instant as its components.
See details in the PR.

Other bugfixes

  • Fix resize in JsonPath (#​2995)
  • Fixed proguard rules for obfuscation to work correctly (#​2983)

v1.8.1

==================

This release updates Kotlin version to 2.1.20, while also providing several important improvements
and bugfixes.

Improvements

Bugfixes

  • Fix incorrect enum coercion during deserialization from JsonElement (#​2962)
  • Supply proper equals(), hashCode(), and toString() for SerialDescriptor() wrapper (#​2942)
  • Do not encode empty packed collections in protobuf (#​2907)

v1.8.0

==================

This release contains all of the changes from 1.8.0-RC. Kotlin 2.1.0 is used as a default, while upcoming 2.1.10 is also supported.
Also added small bugfixes, including speedup of ProtoWireType.from (#​2879).


Configuration

📅 Schedule: (UTC)

  • 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot changed the title chore: update dependency org.jetbrains.kotlin.plugin.serialization to v2.1.0 fix: update sample-dependencies Dec 11, 2024
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch from f7242b4 to 25e3355 Compare December 11, 2024 18:58
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch from 25e3355 to 17cf8dd Compare January 7, 2025 16:00
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch from 17cf8dd to 9abc9c1 Compare January 15, 2025 21:11
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch from 9abc9c1 to 1a75e17 Compare January 27, 2025 08:40
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch 2 times, most recently from 2dcdc14 to 40dacee Compare March 3, 2025 15:33
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch 2 times, most recently from 32cc27c to c444e53 Compare March 17, 2025 16:31
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch from c444e53 to 5bb3c8e Compare March 20, 2025 10:50
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch from 5bb3c8e to 4eaf7ee Compare April 1, 2025 11:56
@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Apr 1, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

  • 🔍 Trigger a full review

Comment @coderabbitai help to get the list of available commands and usage tips.

@renovate renovate Bot force-pushed the renovate/sample-dependencies branch from 4eaf7ee to 9b9b425 Compare April 9, 2025 19:45
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch from 9b9b425 to b19c5b3 Compare April 24, 2025 07:25
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch 2 times, most recently from 527e267 to 1d4fd7d Compare May 13, 2025 13:28
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch from 1d4fd7d to 17b62da Compare May 28, 2025 10:03
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch 2 times, most recently from 068089c to 3a2d0a8 Compare June 4, 2025 17:44
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch 2 times, most recently from 42a0946 to 900a40d Compare June 27, 2025 15:14
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch from 900a40d to 9db8032 Compare July 8, 2025 17:37
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch from 9db8032 to e7a1419 Compare July 17, 2025 20:50
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch 2 times, most recently from 61bd68e to a97e19e Compare August 14, 2025 09:22
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch from a97e19e to 92eeb1f Compare August 27, 2025 22:02
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch from 92eeb1f to a7e4d1a Compare September 19, 2025 15:52
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch from a7e4d1a to 56a6ea7 Compare October 23, 2025 13:08
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch 2 times, most recently from c8b1f7a to b69f497 Compare November 19, 2025 20:31
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch from b69f497 to 06de51b Compare December 3, 2025 18:44
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch 2 times, most recently from c95e185 to e8c9ced Compare December 17, 2025 19:56
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch from e8c9ced to c522f94 Compare January 21, 2026 17:12
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch 2 times, most recently from 2755b57 to 3004307 Compare February 5, 2026 14:34
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch from 3004307 to 5827f8a Compare February 11, 2026 18:42
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch 2 times, most recently from 53ed404 to 0449980 Compare March 16, 2026 10:38
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch from 0449980 to 6e804cf Compare April 9, 2026 20:52
@renovate renovate Bot force-pushed the renovate/sample-dependencies branch from 6e804cf to 8fa480a Compare April 23, 2026 10:01
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.

0 participants