Skip to content

Commit

Permalink
Update to Glean v61.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rvandermeulen committed Sep 26, 2024
1 parent b10c131 commit 7777cb5
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
# v132.0 (In progress)

## 🦊 What's Changed 🦊

### Glean
- Updated to v61.1.0 ([#6397](https://github.com/mozilla/application-services/pull/6397))

[Full Changelog](In progress)

# v131.0 (_2024-08-30_)

## 🦊 What's Changed 🦊

### Glean
- Updated to v61.0.0 ([#6348](https://github.com/mozilla/application-services/pull/6348))

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion components/external/glean
Submodule glean updated 43 files
+1 −1 .buildconfig.yml
+1 −1 .circleci/config.yml
+2 −1 .dictionary
+11 −1 CHANGELOG.md
+3 −3 Cargo.lock
+3 −3 DEPENDENCIES.md
+3 −0 docs/user/SUMMARY.md
+9 −2 docs/user/reference/metrics/event.md
+37 −0 docs/user/user/howto/real-time-events/real-time-events.md
+1 −1 docs/user/user/metrics/adding-new-metrics.md
+1 −1 docs/user/user/pings/events.md
+2 −2 glean-core/Cargo.toml
+67 −1 glean-core/android/src/main/java/mozilla/telemetry/glean/Dispatchers.kt
+3 −2 glean-core/android/src/main/java/mozilla/telemetry/glean/Glean.kt
+8 −8 glean-core/android/src/main/java/mozilla/telemetry/glean/private/EventMetricType.kt
+7 −8 glean-core/android/src/main/java/mozilla/telemetry/glean/private/ObjectMetricType.kt
+13 −3 glean-core/android/src/main/java/mozilla/telemetry/glean/private/TimingDistributionMetricType.kt
+20 −5 glean-core/android/src/main/java/mozilla/telemetry/glean/scheduler/MetricsPingScheduler.kt
+1 −1 glean-core/build/Cargo.toml
+1 −1 glean-core/build/src/lib.rs
+1 −1 glean-core/python/glean/__init__.py
+1 −1 glean-core/python/requirements_dev.txt
+2 −2 glean-core/rlb/Cargo.toml
+3 −1 glean-core/rlb/src/lib.rs
+3 −3 glean-core/rlb/src/private/mod.rs
+82 −0 glean-core/rlb/tests/custom_distribution_buffered.rs
+95 −0 glean-core/rlb/tests/memory_distribution_buffered.rs
+97 −0 glean-core/rlb/tests/timing_distribution_buffered.rs
+1 −0 glean-core/src/error_recording.rs
+4 −4 glean-core/src/histogram/exponential.rs
+46 −0 glean-core/src/histogram/functional.rs
+4 −4 glean-core/src/histogram/linear.rs
+131 −0 glean-core/src/histogram/mod.rs
+5 −2 glean-core/src/lib.rs
+112 −3 glean-core/src/metrics/custom_distribution.rs
+95 −0 glean-core/src/metrics/memory_distribution.rs
+4 −3 glean-core/src/metrics/mod.rs
+5 −3 glean-core/src/metrics/remote_settings_config.rs
+106 −0 glean-core/src/metrics/timing_distribution.rs
+1 −1 gradle-plugin/src/main/groovy/mozilla/telemetry/glean-gradle-plugin/GleanGradlePlugin.groovy
+1 −1 pyproject.toml
+9 −0 samples/rust/metrics.yaml
+9 −0 samples/rust/src/main.rs
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ kotlinx-coroutines = "1.8.0"

# Mozilla
android-components = "128.0.2"
glean = "61.0.0"
glean = "61.1.0"
rust-android-gradle = "0.9.4"

# AndroidX
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1142,7 +1142,7 @@
repositoryURL = "https://github.com/mozilla/glean-swift";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 61.0.0;
minimumVersion = 61.1.0;
};
};
/* End XCRemoteSwiftPackageReference section */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/mozilla/glean-swift",
"state" : {
"revision" : "72ce6860b3ea87d92646f5645b59e24102a0d131",
"version" : "61.0.0"
"revision" : "238d6d31916ae9ef2d67a70bc613ef083046b88b",
"version" : "61.1.0"
}
}
],
Expand Down

0 comments on commit 7777cb5

Please sign in to comment.