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 @@ -7,6 +7,7 @@ cannot be negative numbers.
* Timestamps were observed to be negative in a few occurrences, for platforms that do not provide the `performance.now` API, namely QML, and in which we fallback to the `Date.now` API.
* If event timestamps are negative pings are rejected by the pipeline.
* [#1132](https://github.com/mozilla/glean.js/pull/1132): Retry ping request on network error with `keepalive: false`. This is sometimes an issue on Chrome browsers below v81.
* [#1170](https://github.com/mozilla/glean.js/pull/1170): Update glean_parser to version 5.0.0.

# v0.31.0 (2022-01-25)

Expand Down
2 changes: 1 addition & 1 deletion glean/src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const LOG_TAG = "CLI";
const VIRTUAL_ENVIRONMENT_DIR = process.env.VIRTUAL_ENV?.split("/").slice(-1)[0] || ".venv";

// The version of glean_parser to install from PyPI.
const GLEAN_PARSER_VERSION = "4.1.1";
const GLEAN_PARSER_VERSION = "5.0.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
2 changes: 1 addition & 1 deletion samples/qt/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
glean_parser==4.1.0
glean_parser==5.0.0