Skip to content

Commit

Permalink
Merge branch 'release-v53.2.0' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
travis79 committed Aug 2, 2023
2 parents de8fd0a + cba25fd commit b8cf10d
Show file tree
Hide file tree
Showing 66 changed files with 972 additions and 549 deletions.
2 changes: 1 addition & 1 deletion .buildconfig.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
libraryVersion: 53.1.0
libraryVersion: 53.2.0
groupId: org.mozilla.telemetry
projects:
glean:
Expand Down
4 changes: 4 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ commands:
name: Run Rust RLB test
command: |
glean-core/rlb/tests/test-shutdown-blocking.sh
- run:
name: Run Rust RLB crash test
command: |
glean-core/rlb/tests/test-thread-crashing.sh
- run:
name: Upload coverage report
command: |
Expand Down
3 changes: 2 additions & 1 deletion .dictionary
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
personal_ws-1.1 en 267 utf-8
personal_ws-1.1 en 268 utf-8
AAR
AARs
ABI
Expand Down Expand Up @@ -98,6 +98,7 @@ VPN
Wasm
WebRender
Webpack
WorkManager
XCFramework
Xcode
YAML
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ dist/
winpython/

samples/ios/app/.venv/
samples/python/.venv*/
samples/python/data
.mypy_cache/
.coverage
htmlcov/
Expand Down
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
# Unreleased changes

[Full changelog](https://github.com/mozilla/glean/compare/v53.1.0...main)
[Full changelog](https://github.com/mozilla/glean/compare/v53.2.0...main)

# v53.2.0 (2023-08-02)

[Full changelog](https://github.com/mozilla/glean/compare/v53.1.0...v53.2.0)

* General
* Update `glean_parser` to v8.1.0. Subsequently, metric names now have a larger limit of 70 characters ([release notes](https://github.com/mozilla/glean_parser/releases/tag/v8.1.0))
* Rust
* The Ping Rate Limit type is now accessible in the Rust Language Binding ([#2528](https://github.com/mozilla/glean/pull/2528))
* Gracefully handle a failure when starting the upload thread. Glean no longer crashes in that case. ([#2545](https://github.com/mozilla/glean/pull/2545))
* `locale` now exposed through the RLB so it can be set by consumers ([2531](https://github.com/mozilla/glean/pull/2531))
* Python
* Added the shutdown API for Python to ensure orderly shutdown and waiting for uploader processes ([#2538](https://github.com/mozilla/glean/pull/2538))
* Kotlin
* Move running of upload task when Glean is running in a background service to use the internal Glean Dispatchers rather than WorkManager. [Bug 1844533](https://bugzilla.mozilla.org/show_bug.cgi?id=1844533)

# v53.1.0 (2023-06-28)

Expand Down
39 changes: 20 additions & 19 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[workspace]
resolver = "2"

members = [
"glean-core",
Expand Down
Loading

0 comments on commit b8cf10d

Please sign in to comment.