Skip to content

Commit 4312196

Browse files
committed
Merge branch 'release-v0.10.2' into release
2 parents a020e2b + d067443 commit 4312196

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

CHANGELOG.md

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

3-
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.10.1...main)
3+
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.10.2...main)
4+
5+
# v0.10.2 (2021-04-26)
6+
7+
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.10.1...v0.10.2)
8+
9+
* [#256](https://github.com/mozilla/glean.js/pull/256): BUGFIX: Add the missing `js` extension to the dispatcher.
410

511
# v0.10.1 (2021-04-26)
612

glean/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

glean/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mozilla/glean",
3-
"version": "0.10.1",
3+
"version": "0.10.2",
44
"description": "An implementation of the Glean SDK, a modern cross-platform telemetry client, for Javascript environments.",
55
"type": "module",
66
"exports": {

glean/src/core/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const GLEAN_SCHEMA_VERSION = 1;
88
//
99
// PACKAGE_VERSION is defined as a global by webpack,
1010
// we need a default here for testing when the app is not build with webpack.
11-
export const GLEAN_VERSION = "0.10.1";
11+
export const GLEAN_VERSION = "0.10.2";
1212

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

glean/src/core/context.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
44

55
import type { DebugOptions } from "./debug_options";
6-
import Dispatcher from "./dispatcher";
6+
import Dispatcher from "./dispatcher.js";
77
import type MetricsDatabase from "./metrics/database";
88
import type EventsDatabase from "./metrics/events_database";
99
import type PingsDatabase from "./pings/database";

0 commit comments

Comments
 (0)