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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

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

* [#2053](https://github.com/mozilla/glean.js/pull/2053): Bumped `glean_parser` version to `19.0`.

# v5.0.7 (2025-11-17)

[Full changelog](https://github.com/mozilla/glean.js/compare/v5.0.6...v5.0.7)
Expand Down
28 changes: 4 additions & 24 deletions glean/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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

// The version of glean_parser to install from PyPI.
// Note: This should be _only_ MAJOR.MINOR
const GLEAN_PARSER_VERSION = "14.5";
const GLEAN_PARSER_VERSION = "19.0";

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

// https://bugzilla.mozilla.org/show_bug.cgi?id=1895302
readonly schedulesPings?: string[];

readonly followsCollectionEnabled?: boolean;

readonly uploaderCapabilities?: string[];
}