Skip to content

Commit 45c3b96

Browse files
authored
Merge pull request #1544 from rosahbruno/1793777-update-glean-parser-version
2 parents d899852 + 83826f2 commit 45c3b96

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
[Full changelog](https://github.com/mozilla/glean.js/compare/v1.2.0...main)
44

5+
* [#1544](https://github.com/mozilla/glean.js/pull/1544): Upgrade `glean_parser` version to `6.2.1`.
56
* [#1516](https://github.com/mozilla/glean.js/pull/1516): Implement the Custom Distribution metric type.
67
* [#1514](https://github.com/mozilla/glean.js/pull/1514): Implement the Memory Distribution metric type.
78
* [#1475](https://github.com/mozilla/glean.js/pull/1475): Implement the Timing Distribution metric type.

glean/src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ 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 = "5.1.0";
30+
const GLEAN_PARSER_VERSION = "6.2.1";
3131

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

glean/tests/integration/schema/schema.spec.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,10 @@ describe("schema", function() {
8383
metrics.timespan.setRawNanos(10 * 10**6);
8484
metrics.uuid.generateAndSet();
8585
metrics.url.set("glean://test");
86+
87+
metrics.rate.addToNumerator(1);
88+
metrics.rate.addToDenominator(2);
89+
8690
const timerId = metrics.timingDistribution.start();
8791
metrics.timingDistribution.stopAndAccumulate(timerId);
8892
metrics.memoryDistribution.accumulate(100000);

samples/qt/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
glean_parser==5.1.0
1+
glean_parser==6.2.1

0 commit comments

Comments
 (0)