Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

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

* [#1923](https://github.com/mozilla/glean.js/pull/1923): Bumped `glean_parser` version to `14.0.1`.
* [#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.
* [#1919](https://github.com/mozilla/glean.js/pull/1919): Add `glean.page_id` to Glean automatic events.

Expand Down
2 changes: 1 addition & 1 deletion glean/src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const LOG_TAG = "CLI";
const VIRTUAL_ENVIRONMENT_DIR = process.env.VIRTUAL_ENV || path.join(process.cwd(), ".venv");

// The version of glean_parser to install from PyPI.
const GLEAN_PARSER_VERSION = "10.0.3";
const GLEAN_PARSER_VERSION = "14.0.1";

// This script runs a given Python module as a "main" module, like
// `python -m module`. However, it first checks that the installed
Expand Down
3 changes: 3 additions & 0 deletions glean/src/core/pings/common_ping_data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,7 @@ export default interface CommonPingData {

// Currently NOT IMPLEMENTED.
readonly preciseTimestamps?: boolean;
readonly includeInfoSections?: boolean;
readonly enabled?: boolean;
readonly schedulesPings?: string[];
}