This sets _only_ the MAJOR.MINOR, not .PATCH,
so that it will automatically upgrade to the latest version <(MAJOR+1)
This commit is contained in:
Jan-Erik Rediger 2024-05-23 11:09:30 +02:00
Родитель eca90f8220
Коммит 6183e7c88c
3 изменённых файлов: 6 добавлений и 4 удалений

Просмотреть файл

@ -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)
@ -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.

Просмотреть файл

@ -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
@ -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. -->

Просмотреть файл

@ -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