Skip to content

Commit b004ffc

Browse files
author
brizental
committed
Merge branch 'release-v0.6.0' into release
2 parents a95506f + efb9f63 commit b004ffc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+1194
-2251
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
version: 2
22
updates:
33
- package-ecosystem: "npm"
4-
directory: "/"
4+
directory: "/glean"
55
schedule:
66
interval: "daily"
77
- package-ecosystem: "npm"
8-
directory: "/samples/web-extension"
8+
directory: "/samples/web-extension/typescript"
9+
schedule:
10+
interval: "daily"
11+
- package-ecosystem: "npm"
12+
directory: "/samples/web-extension/javascript"
913
schedule:
1014
interval: "daily"
1115
- package-ecosystem: "pip"

CHANGELOG.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
# Unreleased changes
22

3-
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.5.0...main)
3+
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.6.0...main)
4+
5+
# v0.6.0 (2021-03-22)
6+
7+
* [#123](https://github.com/mozilla/glean.js/pull/123): BUGFIX: Fix support for ES6 environments.
8+
* Include `.js` extensions in all local import statements.
9+
* ES6' module resolution algorithm does not currently support automatic resolution of file extensions and does not have the hability to import directories that have an index file. The extension and the name of the file being import need to _always_ be specified. See: https://nodejs.org/api/esm.html#esm_customizing_esm_specifier_resolution_algorithm
10+
* Add a `type: module` declaration to the main `package.json`.
11+
* Without this statement, ES6 support is disabled. See: https://nodejs.org/docs/latest-v13.x/api/esm.html#esm_enabling.:
12+
* To keep support for CommonJS, in our CommonJS build we include a `package.json` that overrides the `type: module` of the main `package.json` with a `type: commonjs`.
13+
14+
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.5.0...v0.6.0)
415

516
# v0.5.0 (2021-03-18)
617

@@ -12,7 +23,6 @@
1223
* The only internal event triggered at this point is the `afterPingCollection` event, which is triggered after ping collection and logging, and before ping storing.
1324
* Plugins are built to listen to a specific Glean event. Each plugin must define an `action`, which is executed everytime the event they are listening to is triggered.
1425
* [#101](https://github.com/mozilla/glean.js/pull/101): BUGFIX: Only validate Debug View Tag and Source Tags when they are present.
15-
* [#101](https://github.com/mozilla/glean.js/pull/101): BUGFIX: Only validate Debug View Tag and Source Tags when they are present.
1626
* [#102](https://github.com/mozilla/glean.js/pull/102): BUGFIX: Include a Glean User-Agent header in all pings.
1727
* [#97](https://github.com/mozilla/glean.js/pull/97): Add support for labeled metric types (string, boolean and counter).
1828
* [#105](https://github.com/mozilla/glean.js/pull/105): Introduce and publish the `glean` command for using the `glean-parser` in a virtual environment.

0 commit comments

Comments
 (0)