Skip to content

Commit

Permalink
Merge pull request #1942 from mozilla/update-glean-parser
Browse files Browse the repository at this point in the history
Update to glean_parser 14.1.2
  • Loading branch information
rosahbruno authored May 23, 2024
2 parents eca90f8 + 6183e7c commit d869954
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
[Full changelog](https://github.com/mozilla/glean.js/compare/v5.0.1...main)

* [#1935](https://github.com/mozilla/glean.js/pull/1935): **BREAKING CHANGE**: Remove `migrateFromLegacyStorage` capability and configuration option. If your project currently sets the `migrateFromLegacyStorage` value, this will no longer work.
* [#1942](https://github.com/mozilla/glean.js/pull/1942): Bumped `glean_parser` version to `14.1.2`.

# v5.0.1 (2024-04-30)

Expand Down Expand Up @@ -30,7 +31,7 @@ This is the official release based on the v5.0.0-pre.0 release.

[Full changelog](https://github.com/mozilla/glean.js/compare/v4.0.0...v4.1.0-pre.0)

* [#1866](https://github.com/mozilla/glean.js/pull/1866): Added a new uploader that falls back to `fetch` if `navigator.sendBeacon` fails.
* [#1866](https://github.com/mozilla/glean.js/pull/1866): Added a new uploader that falls back to `fetch` if `navigator.sendBeacon` fails.
* [#1876](https://github.com/mozilla/glean.js/pull/1876): **BREAKING CHANGE**: `navigator.sendBeacon` with fallback to `fetch` (see #1866) is now the default uploader. This can be changed manually.
* [#1850](https://github.com/mozilla/glean.js/pull/1850): Automatically record basic session information (`session_id` & `session_count`) for web properties.

Expand Down
4 changes: 2 additions & 2 deletions docs/reference/metrics.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!-- AUTOGENERATED BY glean_parser v14.0.1. DO NOT EDIT. -->
<!-- AUTOGENERATED BY glean_parser v14.1.2. DO NOT EDIT. -->

# Metrics

Expand Down Expand Up @@ -107,5 +107,5 @@ In addition to those built-in metrics, the following metrics are added to the pi

Data categories are [defined here](https://wiki.mozilla.org/Firefox/Data_Collection).

<!-- AUTOGENERATED BY glean_parser v14.0.1. DO NOT EDIT. -->
<!-- AUTOGENERATED BY glean_parser v14.1.2. DO NOT EDIT. -->

3 changes: 2 additions & 1 deletion glean/src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ 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 = "14.0.1";
// Note: This should be _only_ MAJOR.MINOR
const GLEAN_PARSER_VERSION = "14.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

0 comments on commit d869954

Please sign in to comment.