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
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
# Unreleased changes

[Full changelog](https://github.com/mozilla/glean.js/compare/v0.8.1...main)
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.9.0...main)

# v0.9.0 (2021-04-19)

[Full changelog](https://github.com/mozilla/glean.js/compare/v0.8.1...v0.9.0)

* [#201](https://github.com/mozilla/glean.js/pull/201): BUGFIX: Do not let the platform be changed after Glean is initialized.
* [#215](https://github.com/mozilla/glean.js/pull/215): Update the `glean-parser` to version 3.1.0.
* [#214](https://github.com/mozilla/glean.js/pull/215): Improve error reporting of the Glean command.

# v0.8.1 (2021-04-14)

Expand Down
4 changes: 2 additions & 2 deletions glean/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion glean/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mozilla/glean",
"version": "0.8.1",
"version": "0.9.0",
"description": "An implementation of the Glean SDK, a modern cross-platform telemetry client, for Javascript environments.",
"type": "module",
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion glean/src/core/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const GLEAN_SCHEMA_VERSION = 1;
//
// PACKAGE_VERSION is defined as a global by webpack,
// we need a default here for testing when the app is not build with webpack.
export const GLEAN_VERSION = "0.8.1";
export const GLEAN_VERSION = "0.9.0";

// The name of a "ping" that will include Glean ping_info metrics,
// such as ping sequence numbers.
Expand Down