Skip to content

Commit 8152ca0

Browse files
committed
Bug 1967754 - Update to Glean v64.3.0 r=TravisLong,supply-chain-reviewers,mach-reviewers,ahochheiden
Differential Revision: https://phabricator.services.mozilla.com/D250445 UltraBlame original commit: 4609a2d2f714346af9463050f3a19fd0acafdbea
1 parent bb5f6e3 commit 8152ca0

File tree

20 files changed

+50
-52
lines changed

20 files changed

+50
-52
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ uniffi_bindgen = "0.29.2"
6868
# Shared across multiple application-services consumers.
6969
rusqlite = "0.33.0"
7070
# Shared across multiple glean consumers.
71-
glean = "=64.2.0"
71+
glean = "=64.3.0"
7272

7373
# Explicitly specify what our profiles use. The opt-level setting here is
7474
# a total fiction; see the setup of MOZ_RUST_DEFAULT_FLAGS for what the

gfx/wr/Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gfx/wr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ members = [
99
resolver = "2"
1010

1111
[workspace.dependencies]
12-
glean = "=64.2.0"
12+
glean = "=64.3.0"
1313

1414
[profile.release]
1515
debug = true

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ spotless = "7.0.2"
8383

8484
# Mozilla versions
8585
apilint = "0.5.4"
86-
mozilla-glean = "64.2.0"
86+
mozilla-glean = "64.3.0"
8787

8888
# Testing versions
8989
androidx-test = "1.6.1"

python/sites/mach.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,10 @@ vendored:third_party/python/wheel
104104
vendored:third_party/python/zipp
105105
# glean-sdk may not be installable if a wheel isn't available
106106
# and it has to be built from source.
107-
pypi-optional:glean-sdk==64.2.0:telemetry will not be collected
107+
pypi-optional:glean-sdk==64.3.0:telemetry will not be collected
108108
# Mach gracefully handles the case where `psutil` is unavailable.
109109
# We aren't (yet) able to pin packages in automation, so we have to
110110
# support down to the oldest locally-installed version (5.4.2).
111111
pypi-optional:psutil>=5.4.2,<=5.9.4:telemetry will be missing some data
112112
pypi-optional:zstandard>=0.11.1,<=0.23.0:zstd archives will not be possible to extract
113-
pypi-optional:ujson==5.7.0:symbolicating profiles will be slower
113+
pypi-optional:orjson>=3.10.15:json operations will be slower in various tools

supply-chain/imports.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -258,15 +258,15 @@ user-login = "jrmuizel"
258258
user-name = "Jeff Muizelaar"
259259

260260
[[publisher.glean]]
261-
version = "64.2.0"
262-
when = "2025-04-28"
261+
version = "64.3.0"
262+
when = "2025-05-21"
263263
user-id = 48
264264
user-login = "badboy"
265265
user-name = "Jan-Erik Rediger"
266266

267267
[[publisher.glean-core]]
268-
version = "64.2.0"
269-
when = "2025-04-28"
268+
version = "64.3.0"
269+
when = "2025-05-21"
270270
user-id = 48
271271
user-login = "badboy"
272272
user-name = "Jan-Erik Rediger"

third_party/rust/glean-core/.cargo-checksum.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

third_party/rust/glean-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
edition = "2021"
1414
rust-version = "1.82"
1515
name = "glean-core"
16-
version = "64.2.0"
16+
version = "64.3.0"
1717
authors = [
1818
"Jan-Erik Rediger <[email protected]>",
1919
"The Glean Team <[email protected]>",
@@ -148,7 +148,7 @@ version = "1.0.19"
148148
version = "0.4.8"
149149

150150
[dependencies.malloc_size_of]
151-
version = "0.2.0"
151+
version = "0.2.1"
152152
features = ["once_cell"]
153153
default-features = false
154154
package = "wr_malloc_size_of"

third_party/rust/glean-core/src/common_metric_data.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ pub struct CommonMetricData {
7878
#[derive(Default, Debug, MallocSizeOf)]
7979
pub struct CommonMetricDataInternal {
8080
pub inner: CommonMetricData,
81-
#[ignore_malloc_size_of = "atomic integers never allocate (bug 1960589)"]
8281
pub disabled: AtomicU8,
8382
}
8483

0 commit comments

Comments
 (0)