Skip to content

Releases: mozilla/glean

v70.0.0

Choose a tag to compare

@badboy badboy released this 20 Aug 13:20

Full changelog

  • General
    • Updated to glean_parser v20.1.0 (#3539)
    • BUGFIX: Ensure errors are not put into the client_info or any other internal section (#3564)
    • SQLite backend
      • Run database maintenance after migration (#3540
      • Run database maintenance at shutdown & after collecting ping data (#3559)
      • Validate that the database connection on open is usable for reads and writes (#3513)
      • Keep state about migration in the database (#3545)
      • The database connection is closed on shutdown (#3584)
    • BREAKING CHANGE: Updated to UniFFI 0.32.0 (#3538)
    • New optional configuration option and Server Knob: events_ping_acceleration_factor: N. Accelerate the first N-1 "events" pings in each session (bug 2060890)
  • Rust
    • glean-sym
      • Implement glean-noop as a feature of glean-sym (#3541)
      • Support pings (#3544)
      • Implement the event metric (#3534)
      • BREAKING CHANGE: Switch from a noop feature to an active feature (#3583)
  • iOS
    • Implement the custom distribution metric type (#3572)
  • Python
    • Implement the custom distribution metric type (#3572)

v68.0.1

Choose a tag to compare

@badboy badboy released this 07 Jul 10:09

Full changelog

  • General
    • BUGFIX: Don't clear unrelated stores if they share a prefix with the one being cleared (#3516)

v69.0.0

Choose a tag to compare

@badboy badboy released this 22 Jun 13:51

Full changelog

  • General
    • BREAKING CHANGE: Replaced the client-side storage backend with a SQLite-powered one.
      This is major change and large refactoring of the Glean SDK internals, but has very limited breaking changes in the
      public API (breaking changes in the Rust API only).
      Data is migrated from the old rkv-powered storage to the SQLite database on first start with this Glean SDK version.
      The Rkv data is retained for now. Only the SQLite-backed data is written to for new metric recordings.
      New glean.migration.* metrics were added to monitor and validate the migration process.
      Other monitoring metrics are preserved.
      The glean.database.rkv_load_error has been replaced by a more generic glean.database.load_error with similar semantics.

v68.0.0

Choose a tag to compare

@badboy badboy released this 19 Jun 12:21

Full changelog

Note: No changes in this release are actually breaking. We're doing this to have a clear cut before we merge the new SQLite-powered storage backend.

  • General
    • Disable the glean.error.event_timestamp_clamped metric (#3500).
  • Rust
    • Make rate_limit configurable in the configuration builder (#3495)
    • Experimental: Enable glean-sym on iOS (#3471)

v67.5.0

Choose a tag to compare

@travis79 travis79 released this 09 Jun 19:44
ec130da

v67.5.0 (2026-06-09)

Full changelog

  • General
    • Add clear_attribution_data and clear_distribution_data General APIs to clear core attribution and distribution data (bug 2043535).

v67.4.0

Choose a tag to compare

@travis79 travis79 released this 09 Jun 18:45
627dfc8

v67.4.0 (2026-06-09)

Full changelog

  • General
    • Updated to glean_parser v19.1.1 (#3426, #3470)
    • Increase pending ping limits to better support long network outages (bug 2040030)
      • New glean.upload.pending_pings_deleted metric added to differentiate between deletions due to pending ping count or directory size limitations
      • Default pending pings allowed before deletion raised from 250 to 500, and the directory size before deletion increased from 10MB to 50MB.
      • New configuration fields added to allow integrating applications to override the maximum pending pings count and directory size limits.
    • Add first-class Sessions support: configurable session management (Auto, Lifecycle, Manual modes), session-level sampling, glean.session_start/glean.session_end boundary events in the events ping, and per-event session metadata for downstream analysis (bug 2020962)
  • Rust
    • Experimental: Introduce glean-sym, a Rust API built on top of the Glean UniFFI C FFI (#3426)
    • client_info.os_version can now be set by the application. If unset Glean still uses the auto-detection (#3419)
  • Android
    • Updated Kotlin to 2.3.21 (#3456)
    • The Gradle plugin now uses the modern AGP variant API, making it compatible with AGP 9 (maintaining AGP 8 compatibility) (#3472).

v67.3.2

Choose a tag to compare

@badboy badboy released this 15 May 10:04

Full changelog

  • General
    • BUGFIX: Don't crash when alloc_size() is called before Glean is initialized (#3455)

v67.3.1

Choose a tag to compare

@badboy badboy released this 08 May 13:19

Full changelog

  • Rust
    • Avoid unsafety and count the allocation for the underlying atomic bool directly (#3450)

v67.3.0

Choose a tag to compare

@badboy badboy released this 08 May 12:56

Full changelog

  • Rust
    • Add support for determining client_info.os_version for Android binaries (#3434)
    • Avoid unsafety and count the allocation for the underlying atomic bool directly (#3450)

v67.2.0

Choose a tag to compare

@chutten chutten released this 06 Apr 17:04
  • General
    • Updated to glean_parser v19.0.0 (#3421)
    • Add server knobs config to ping_info (#3396)
    • Fix test_get_value on labeled_ metrics to ask the db for the list of labels (bug 2028892)