Skip to content

Commit 3166592

Browse files
committed
Update glean_parser to v18.0.1
1 parent 93cb9f7 commit 3166592

File tree

10 files changed

+10
-9
lines changed

10 files changed

+10
-9
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
* Swift
1111
* Make `EventMetricType`, `ObjectMetricType`, `URLMetricType` and `Ping` `Sendable` ([#3255](https://github.com/mozilla/glean/pull/3255))
1212
* Glean for iOS is now being built with Xcode 16.4 ([#3270](https://github.com/mozilla/glean/pull/3270))
13+
* Updated to `glean_parser` v18.0.0 ([#3273](https://github.com/mozilla/glean/pull/3273))
1314

1415
# v65.2.2 (2025-10-02)
1516

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ docs-python: build-python ## Build the Python documentation
164164
.PHONY: docs docs-rust docs-swift
165165

166166
docs-metrics: setup-python ## Build the internal metrics documentation
167-
$(GLEAN_PYENV)/bin/pip install glean_parser~=17.2
167+
$(GLEAN_PYENV)/bin/pip install glean_parser~=18.0
168168
$(GLEAN_PYENV)/bin/glean_parser translate --allow-reserved \
169169
-f markdown \
170170
-o ./docs/user/user/collected-metrics \

glean-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ include = [
2121
rust-version = "1.82"
2222

2323
[package.metadata.glean]
24-
glean-parser = "17.2.0"
24+
glean-parser = "18.0.1"
2525

2626
[badges]
2727
circle-ci = { repository = "mozilla/glean", branch = "main" }

glean-core/build/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "glean-build"
3-
version = "17.2.0"
3+
version = "18.0.1"
44
edition = "2021"
55
description = "Glean SDK Rust build helper"
66
repository = "https://github.com/mozilla/glean"

glean-core/build/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ use std::{env, path::PathBuf};
3939

4040
use xshell_venv::{Result, Shell, VirtualEnv};
4141

42-
const GLEAN_PARSER_VERSION: &str = "17.2.0";
42+
const GLEAN_PARSER_VERSION: &str = "18.0.1";
4343

4444
/// A Glean Rust bindings generator.
4545
pub struct Builder {

glean-core/ios/sdk_generator.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
set -e
2727

28-
GLEAN_PARSER_VERSION=17.2
28+
GLEAN_PARSER_VERSION=18.0
2929

3030
# CMDNAME is used in the usage text below.
3131
# shellcheck disable=SC2034

glean-core/python/glean/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
__email__ = "[email protected]"
3131

3232

33-
GLEAN_PARSER_VERSION = "17.2.0"
33+
GLEAN_PARSER_VERSION = "18.0.1"
3434
parser_version = VersionInfo.parse(GLEAN_PARSER_VERSION)
3535
parser_version_next_major = parser_version.bump_major()
3636

gradle-plugin/src/main/groovy/mozilla/telemetry/glean-gradle-plugin/GleanGradlePlugin.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ abstract class GleanMetricsYamlTransform implements TransformAction<TransformPar
5050
@SuppressWarnings("GrPackage")
5151
class GleanPlugin implements Plugin<Project> {
5252
// The version of glean_parser to install from PyPI.
53-
private String GLEAN_PARSER_VERSION = "17.2"
53+
private String GLEAN_PARSER_VERSION = "18.0"
5454
// The version of Miniconda is explicitly specified.
5555
// Miniconda3-4.5.12 is known to not work on Windows.
5656
private String MINICONDA_VERSION = "24.3.0-0"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ maintainers = [
2222

2323
dependencies = [
2424
"semver>=2.13.0",
25-
"glean_parser~=17.2",
25+
"glean_parser~=18.0",
2626
]
2727

2828
[project.urls]

0 commit comments

Comments
 (0)