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 @@ -2,6 +2,7 @@

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

* [#1544](https://github.com/mozilla/glean.js/pull/1544): Upgrade `glean_parser` version to `6.2.1`.
* [#1516](https://github.com/mozilla/glean.js/pull/1516): Implement the Custom Distribution metric type.
* [#1514](https://github.com/mozilla/glean.js/pull/1514): Implement the Memory Distribution metric type.
* [#1475](https://github.com/mozilla/glean.js/pull/1475): Implement the Timing Distribution metric type.
Expand Down
2 changes: 1 addition & 1 deletion glean/src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ 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 = "5.1.0";
const GLEAN_PARSER_VERSION = "6.2.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
4 changes: 4 additions & 0 deletions glean/tests/integration/schema/schema.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ describe("schema", function() {
metrics.timespan.setRawNanos(10 * 10**6);
metrics.uuid.generateAndSet();
metrics.url.set("glean://test");

metrics.rate.addToNumerator(1);
metrics.rate.addToDenominator(2);

const timerId = metrics.timingDistribution.start();
metrics.timingDistribution.stopAndAccumulate(timerId);
metrics.memoryDistribution.accumulate(100000);
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==5.1.0
glean_parser==6.2.1