Skip to content

Commit d869954

Browse files
authored
Merge pull request #1942 from mozilla/update-glean-parser
Update to glean_parser 14.1.2
2 parents eca90f8 + 6183e7c commit d869954

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
[Full changelog](https://github.com/mozilla/glean.js/compare/v5.0.1...main)
44

55
* [#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.
6+
* [#1942](https://github.com/mozilla/glean.js/pull/1942): Bumped `glean_parser` version to `14.1.2`.
67

78
# v5.0.1 (2024-04-30)
89

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

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

33-
* [#1866](https://github.com/mozilla/glean.js/pull/1866): Added a new uploader that falls back to `fetch` if `navigator.sendBeacon` fails.
34+
* [#1866](https://github.com/mozilla/glean.js/pull/1866): Added a new uploader that falls back to `fetch` if `navigator.sendBeacon` fails.
3435
* [#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.
3536
* [#1850](https://github.com/mozilla/glean.js/pull/1850): Automatically record basic session information (`session_id` & `session_count`) for web properties.
3637

docs/reference/metrics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- AUTOGENERATED BY glean_parser v14.0.1. DO NOT EDIT. -->
1+
<!-- AUTOGENERATED BY glean_parser v14.1.2. DO NOT EDIT. -->
22

33
# Metrics
44

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

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

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

glean/src/cli.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ 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 = "14.0.1";
30+
// Note: This should be _only_ MAJOR.MINOR
31+
const GLEAN_PARSER_VERSION = "14.1";
3132

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

0 commit comments

Comments
 (0)