Skip to content

Commit a485ff4

Browse files
author
Beatriz Rizental
authored
Merge pull request #1234 from mozilla/release-v0.32.0
Bumped version to 0.32.0
2 parents 18f5ade + 2a7b5d3 commit a485ff4

File tree

9 files changed

+20
-15
lines changed

9 files changed

+20
-15
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ jobs:
172172
pip install -r requirements.txt
173173
glean_parser translate src/App/metrics.yaml src/App/pings.yaml \
174174
-f javascript -o src/App/generated \
175-
--option platform=qt --option version="0.31"
175+
--option platform=qt --option version="0.32"
176176
- run:
177177
name: Run Qt sample tests
178178
command: |

CHANGELOG.md

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

3-
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.31.0...main)
3+
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.32.0...main)
4+
5+
# v0.32.0 (2022-03-01)
6+
7+
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.31.0...v0.32.0)
48

59
* [#1220](https://github.com/mozilla/glean.js/pull/1220): Refactor virtual environment behavior to support virtual environments that aren't in the project root.
610
* This means it's possible to run Glean with a virtual environment created by `virtualenv` or `pyenv-virtualenv` without causing a Glean-specific `.venv` directory to be created in a project that is using Glean.

automation/package-lock.json

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

docs/reference/sizes.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ To check out a comprehensive list of which metrics are collected by Glean and th
1414
|| Size |
1515
|--|--|
1616
|web|**53 KB**|
17-
|webext|**52 KB**|
17+
|webext|**53 KB**|
1818
|node|**52 KB**|
19-
|QML|**68 KB**|
19+
|QML|**69 KB**|
2020
<!-- ! -->
2121

2222
> **Note**: The QML bundle contains all the metric types and is not distributed through the
@@ -31,8 +31,8 @@ thus using each of them will result in a larger bundle.
3131
|Metric Type| web|webext|node|
3232
|--|--|--|--|
3333
|boolean|527 bytes |527 bytes |527 bytes |
34-
|labeled|373 bytes |362 bytes |361 bytes |
35-
|quantity|783 bytes |772 bytes |771 bytes |
34+
|labeled|385 bytes |361 bytes |360 bytes |
35+
|quantity|784 bytes |772 bytes |771 bytes |
3636
|text|574 bytes |574 bytes |574 bytes |
3737
|timespan|2.4 KB |2.4 KB |2.4 KB |
3838
|rate|1.6 KB |1.6 KB |1.6 KB |
@@ -47,5 +47,5 @@ Using a plugin also means a size impact on the final bundle.
4747
<!-- ! -->
4848
|Plugin| web|webext|node|
4949
|--|--|--|--|
50-
|encryption|21 KB |21 KB |28 KB |
50+
|encryption|22 KB |22 KB |28 KB |
5151
<!-- ! -->

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.31.0",
3+
"version": "0.32.0",
44
"description": "An implementation of the Glean SDK, a modern cross-platform telemetry client, for JavaScript environments.",
55
"type": "module",
66
"sideEffects": false,

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.31.0";
11+
export const GLEAN_VERSION = "0.32.0";
1212

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

samples/qt/src/App/App.qml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
import QtQuick 2.0
66
import QtQuick.Controls 2.0
77

8-
import org.mozilla.Glean 0.31
9-
import generated 0.31
8+
import org.mozilla.Glean 0.32
9+
import generated 0.32
1010

1111
Rectangle {
1212
id: screen

samples/qt/src/Tests/tst_maintests.qml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import QtQuick 2.0
22
import QtTest 1.0
33

4-
import org.mozilla.Glean 0.31
5-
import generated 0.31
4+
import org.mozilla.Glean 0.32
5+
import generated 0.32
66

77
import App 1.0
88

0 commit comments

Comments
 (0)