Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
* Event timestamps are now always clamped to the range of a signed 64-bit integer.
An overflow is recorded in the new metric `glean.error.event_timestamp_clamped` in case this happens ([#3308](https://github.com/mozilla/glean/pull/3308)).
* BREAKING CHANGE: Updated to UniFFI 0.31.0 ([#3366](https://github.com/mozilla/glean/pull/3366))
* Android
* Updated Kotlin to 2.3.0 ([#3379](https://github.com/mozilla/glean/pull/3379))

# v66.3.0 (2025-12-19)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class DatetimeMetricType(
val cal = Calendar.getInstance()
cal.set(Calendar.ZONE_OFFSET, AndroidTimeUnit.SECONDS.toMillis(dt.offsetSeconds.toLong()).toInt())
cal.set(Calendar.DST_OFFSET, 0) // we pretend its never DST. The zone offset will have that already.
cal.set(Calendar.YEAR, dt.year.toInt())
cal.set(Calendar.YEAR, dt.year)
cal.set(Calendar.MONTH, dt.month.toInt() - 1) // java.util.calendar's month is 0-based for months
cal.set(Calendar.DAY_OF_MONTH, dt.day.toInt())
cal.set(Calendar.HOUR_OF_DAY, dt.hour.toInt())
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@

[versions]
# AGP
android-plugin = "8.13.1"
android-plugin = "8.13.2"

# Kotlin
kotlin-compiler = "2.2.21"
kotlin-compiler = "2.3.0"
kotlinx-coroutines = "1.10.2"
kotlinx-serialization = "1.9.0"

Expand Down