Skip to content

Commit 36a07a2

Browse files
committed
Bumped glean_parser version to 14.0.1
1 parent b1156ba commit 36a07a2

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
[Full changelog](https://github.com/mozilla/glean.js/compare/v5.0.0...main)
44

5+
* [#1923](https://github.com/mozilla/glean.js/pull/1923): Bumped `glean_parser` version to `14.0.1`.
56
* [#1921](https://github.com/mozilla/glean.js/pull/1921): BUGFIX: Fix issue causing `glean.client.annotation.experimentation_id` metric to not get added in certain pings.
67
* [#1919](https://github.com/mozilla/glean.js/pull/1919): Add `glean.page_id` to Glean automatic events.
78

glean/src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const LOG_TAG = "CLI";
2727
const VIRTUAL_ENVIRONMENT_DIR = process.env.VIRTUAL_ENV || path.join(process.cwd(), ".venv");
2828

2929
// The version of glean_parser to install from PyPI.
30-
const GLEAN_PARSER_VERSION = "10.0.3";
30+
const GLEAN_PARSER_VERSION = "14.0.1";
3131

3232
// This script runs a given Python module as a "main" module, like
3333
// `python -m module`. However, it first checks that the installed

glean/src/core/pings/common_ping_data.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,7 @@ export default interface CommonPingData {
1717

1818
// Currently NOT IMPLEMENTED.
1919
readonly preciseTimestamps?: boolean;
20+
readonly includeInfoSections?: boolean;
21+
readonly enabled?: boolean;
22+
readonly schedulesPings?: string[];
2023
}

0 commit comments

Comments
 (0)