| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| 0.17.0 _ Dependency Updates and kotlinx.datetime Migration source code.tar.gz | 2025-09-23 | 1.1 MB | |
| 0.17.0 _ Dependency Updates and kotlinx.datetime Migration source code.zip | 2025-09-23 | 1.7 MB | |
| README.md | 2025-09-23 | 2.0 kB | |
| Totals: 3 Items | 2.9 MB | 0 | |
0.17.0
Breaking Changes!!
This release migrates from the kotlinx.datetime classes Clock and Instant to their equivalents of kotlin.time whilst their APIs are unchanged, imports have to be updated respectivly. Unfortunately JetBrains deprecated the old kotlinx.time classes before the new types were marked stable, therefore it is requierd to opt-in to kotlin.time.ExperimentalTime
Import changes
kotlinx.datetime.Instant -> kotlin.time.Instant
kotlinx.datetime.Clock -> kotlin.time.Clock
Gradle Changes
:::kotlin
kotlin {
compilerOptions {
optIn.add("kotlin.time.ExperimentalTime")
}
}
What's Changed
- Bump
DeprecationLevels after 0.15.0 by @lukellmann in https://github.com/kordlib/kord/pull/987 - Exclude interaction endpoints from global rate-limit by @DRSchlaubi in https://github.com/kordlib/kord/pull/989
- fix(core/cache): swap Generator type parameters by @viztea in https://github.com/kordlib/kord/pull/993
- Add platform field to ActivityData and DiscordActivity by @giginet in https://github.com/kordlib/kord/pull/995
- Use declaration-site variance for
EntitySupplyStrategyby @lukellmann in https://github.com/kordlib/kord/pull/996 - Use new jetbrains logo by @DRSchlaubi in https://github.com/kordlib/kord/pull/1004
- Add support for application emojis by @DRSchlaubi in https://github.com/kordlib/kord/pull/973
- Fix issues with application emojis by @DRSchlaubi in https://github.com/kordlib/kord/pull/1010
- Update dependencies by @DRSchlaubi in https://github.com/kordlib/kord/pull/1021
- Add remaining JsonErrorCodes by @NoComment1105 in https://github.com/kordlib/kord/pull/1020
- Improve publishing pipeline by @DRSchlaubi in https://github.com/kordlib/kord/pull/1022
New Contributors
- @giginet made their first contribution in https://github.com/kordlib/kord/pull/995
Full Changelog: https://github.com/kordlib/kord/compare/0.15.0...0.17.0