Skip to content

Commit

Permalink
Update to Glean v60.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
badboy committed Aug 7, 2024
1 parent 56e868a commit 236fdd9
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

[Full Changelog](In progress)

### Glean
- Updated to v60.5.0 ([#6339](https://github.com/mozilla/application-services/pull/6339))

# v130.0 (_2024-08-05_)

## ✨ What's New ✨
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 71 files
+1 −1 .buildconfig.yml
+4 −0 .circleci/config.yml
+14 −1 CHANGELOG.md
+4 −3 Cargo.lock
+3 −3 DEPENDENCIES.md
+1 −1 Makefile
+12 −9 docs/user/SUMMARY.md
+1 −1 docs/user/reference/general/initializing.md
+2 −1 docs/user/reference/metrics/event.md
+0 −8 docs/user/user/pings/data-control-plane/product-integration.md
+25 −0 docs/user/user/server-knobs/index.md
+0 −0 docs/user/user/server-knobs/metrics/advanced-topics.md
+0 −0 docs/user/user/server-knobs/metrics/example-scenarios.md
+0 −0 docs/user/user/server-knobs/metrics/experimenter-configuration.md
+0 −0 docs/user/user/server-knobs/metrics/faq.md
+1 −1 docs/user/user/server-knobs/metrics/index.md
+22 −9 docs/user/user/server-knobs/metrics/product-integration.md
+15 −0 docs/user/user/server-knobs/other/index.md
+16 −0 docs/user/user/server-knobs/other/max-events.md
+0 −0 docs/user/user/server-knobs/pings/experimenter-configuration.md
+1 −1 docs/user/user/server-knobs/pings/index.md
+11 −0 docs/user/user/server-knobs/pings/product-integration.md
+2 −4 glean-core/Cargo.toml
+4 −10 glean-core/android/src/main/java/mozilla/telemetry/glean/Glean.kt
+4 −0 glean-core/android/src/main/java/mozilla/telemetry/glean/config/Configuration.kt
+19 −1 glean-core/android/src/main/java/mozilla/telemetry/glean/testing/GleanTestLocalServer.kt
+3 −2 glean-core/android/src/test/java/mozilla/telemetry/glean/GleanTest.kt
+1 −1 glean-core/build/Cargo.toml
+1 −1 glean-core/build/src/lib.rs
+9 −1 glean-core/ios/Glean/Config/Configuration.swift
+3 −1 glean-core/ios/Glean/Glean.swift
+1 −1 glean-core/ios/sdk_generator.sh
+1 −1 glean-core/python/glean/__init__.py
+2 −0 glean-core/python/glean/glean.py
+2 −0 glean-core/python/glean/net/ping_upload_worker.py
+1 −1 glean-core/python/requirements_dev.txt
+3 −0 glean-core/python/tests/data/events_with_types.yaml
+4 −4 glean-core/rlb/Cargo.toml
+136 −0 glean-core/rlb/examples/ping-lifetime-flush.rs
+25 −0 glean-core/rlb/src/configuration.rs
+2 −0 glean-core/rlb/src/lib.rs
+58 −0 glean-core/rlb/src/private/object.rs
+3 −2 glean-core/rlb/tests/overflowing_preinit.rs
+53 −0 glean-core/rlb/tests/test-ping-lifetime-flush.sh
+22 −2 glean-core/src/core/mod.rs
+94 −61 glean-core/src/database/mod.rs
+0 −3 glean-core/src/dispatcher/global.rs
+2 −0 glean-core/src/glean.udl
+5 −0 glean-core/src/lib.rs
+2 −0 glean-core/src/lib_unit_tests.rs
+6 −0 glean-core/src/metrics/remote_settings_config.rs
+13 −0 glean-core/src/traits/mod.rs
+2 −0 glean-core/tests/common/mod.rs
+80 −0 glean-core/tests/event.rs
+4 −0 glean-core/tests/ping_maker.rs
+2 −2 gradle-plugin/src/main/groovy/mozilla/telemetry/glean-gradle-plugin/GleanGradlePlugin.groovy
+4 −4 gradle/libs.versions.toml
+ gradle/wrapper/gradle-wrapper.jar
+1 −1 gradle/wrapper/gradle-wrapper.properties
+4 −1 gradlew
+2 −0 gradlew.bat
+2 −2 pyproject.toml
+7 −0 samples/android/app/metrics.yaml
+3 −1 samples/android/app/src/main/java/org/mozilla/samples/gleancore/MainActivity.kt
+3 −1 samples/ios/app/glean-sample-app/ViewController.swift
+8 −0 samples/ios/app/glean-sample-appUITests/ViewControllerTest.swift
+11 −1 samples/ios/app/metrics.yaml
+1 −0 samples/rust/Cargo.toml
+36 −0 samples/rust/metrics.yaml
+14 −1 samples/rust/src/main.rs
+18 −7 taskcluster/scripts/cross-compile-setup.sh
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 = "60.4.0"
glean = "60.5.0"
rust-android-gradle = "0.9.4"

# AndroidX
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1165,7 +1165,7 @@
repositoryURL = "https://github.com/mozilla/glean-swift";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 60.4.0;
minimumVersion = 60.5.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" : "4bea990fdaaeea98b7855ce682bfefa6a5acc04b",
"version" : "60.4.0"
"revision" : "2185e2eea2d5ce272ff5c0e851eed42d52104ce4",
"version" : "60.5.0"
}
}
],
Expand Down

0 comments on commit 236fdd9

Please sign in to comment.