Skip to content

Commit

Permalink
Merge pull request #1891 from mozilla/release-v4.1.0-pre.0
Browse files Browse the repository at this point in the history
Release v4.1.0 pre.0
  • Loading branch information
Dexterp37 authored Mar 5, 2024
2 parents 9fd55b4 + cf13503 commit 805e63e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
9 changes: 6 additions & 3 deletions 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/v4.0.0...main)
[Full changelog](https://github.com/mozilla/glean.js/compare/v4.1.0-pre.0...main)

# v4.1.0-pre.0 (2024-03-05)

[Full changelog](https://github.com/mozilla/glean.js/compare/v4.0.0...v4.1.0-pre.0)

* [#1866](https://github.com/mozilla/glean.js/pull/1866): Added a new uploader that falls back to `fetch` if `navigator.sendBeacon` fails.
* [#1876](https://github.com/mozilla/glean.js/pull/1876): **BREAKING CHANGE**: `navigator.sendBeacon` with fallback to `fetch` (see #1866) is now the default uploader. This can be changed manually.
* [#1850](https://github.com/mozilla/glean.js/pull/1850): Automatically record basic session information (`session_id` & `session_count`) for web properties.

# v4.0.0 (2024-01-24)

Expand All @@ -18,8 +23,6 @@
* [#1848](https://github.com/mozilla/glean.js/pull/1848): Support for automatically collecting element click events (first version)
* [#1849](https://github.com/mozilla/glean.js/pull/1849): Truncate event extra strings to 500 bytes. This also updates other string-based metrics to truncate based on max bytes rather than a set number of characters.

* [#1850](https://github.com/mozilla/glean.js/pull/1850): Automatically record basic session information (`session_id` & `session_count`) for web properties.

# v4.0.0-pre.2 (2023-12-06)

[Full changelog](https://github.com/mozilla/glean.js/compare/v4.0.0-pre.1...v4.0.0-pre.2)
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": "4.0.0",
"version": "4.1.0-pre.0",
"description": "An implementation of the Glean SDK, a modern cross-platform telemetry client, for JavaScript environments.",
"type": "module",
"sideEffects": false,
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 = "4.0.0";
export const GLEAN_VERSION = "4.1.0-pre.0";

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

0 comments on commit 805e63e

Please sign in to comment.