Skip to content

Commit 354c25c

Browse files
committed
Bumped version to 1.3.0
1 parent c17f6e9 commit 354c25c

File tree

10 files changed

+22
-15
lines changed

10 files changed

+22
-15
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ jobs:
179179
pip install -r requirements.txt
180180
glean_parser translate src/App/metrics.yaml src/App/pings.yaml \
181181
-f javascript -o src/App/generated \
182-
--option platform=qt --option version="1.2"
182+
--option platform=qt --option version="1.3"
183183
- run:
184184
name: Run Qt sample tests
185185
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/v1.2.0...main)
3+
[Full changelog](https://github.com/mozilla/glean.js/compare/v1.3.0...main)
4+
5+
# v1.3.0 (2022-10-18)
6+
7+
[Full changelog](https://github.com/mozilla/glean.js/compare/v1.2.0...v1.3.0)
48

59
* [#1544](https://github.com/mozilla/glean.js/pull/1544): Upgrade `glean_parser` version to `6.2.1`.
610
* [#1516](https://github.com/mozilla/glean.js/pull/1516): Implement the Custom Distribution metric type.

docs/reference/metrics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- AUTOGENERATED BY glean_parser. DO NOT EDIT. -->
1+
<!-- AUTOGENERATED BY glean_parser v6.2.1. DO NOT EDIT. -->
22

33
# Metrics
44

@@ -62,5 +62,5 @@ This ping contains no metrics.
6262

6363
Data categories are [defined here](https://wiki.mozilla.org/Firefox/Data_Collection).
6464

65-
<!-- AUTOGENERATED BY glean_parser. DO NOT EDIT. -->
65+
<!-- AUTOGENERATED BY glean_parser v6.2.1. DO NOT EDIT. -->
6666

docs/reference/sizes.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ To check out a comprehensive list of which metrics are collected by Glean and th
1515
|web|**56 KB**|
1616
|webext|**56 KB**|
1717
|node|**55 KB**|
18-
|QML|**78 KB**|
18+
|QML|**91 KB**|
1919
<!-- ! -->
2020

2121
> **Note**: The QML bundle contains all the metric types and is not distributed through the
@@ -34,13 +34,16 @@ to external consumers.
3434
|--|--|--|--|
3535
|boolean|1.6 KB |1.6 KB |1.6 KB |
3636
|counter|998 bytes |998 bytes |998 bytes |
37+
|custom_distribution|5.4 KB |5.4 KB |5.4 KB |
3738
|datetime|1.1 KB |1.1 KB |1.1 KB |
3839
|event|1008 bytes |1008 bytes |1008 bytes |
3940
|labeled|362 bytes |375 bytes |361 bytes |
41+
|memory_distribution|5.0 KB |5.0 KB |5.0 KB |
4042
|quantity|1.7 KB |1.7 KB |1.7 KB |
4143
|string|998 bytes |998 bytes |998 bytes |
4244
|text|1.5 KB |1.5 KB |1.5 KB |
4345
|timespan|3.9 KB |3.9 KB |3.9 KB |
46+
|timing_distribution|6.6 KB |6.6 KB |6.6 KB |
4447
|rate|2.3 KB |2.3 KB |2.3 KB |
4548
|uuid|1.0 KB |1.0 KB |1.0 KB |
4649
|url|2.0 KB |2.0 KB |2.0 KB |
@@ -54,5 +57,5 @@ Using a plugin also means a size impact on the final bundle.
5457
<!-- ! -->
5558
|Plugin| web|webext|node|
5659
|--|--|--|--|
57-
|encryption|21 KB |21 KB |28 KB |
60+
|encryption|22 KB |22 KB |28 KB |
5861
<!-- ! -->

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": "1.2.0",
3+
"version": "1.3.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 = "1.2.0";
11+
export const GLEAN_VERSION = "1.3.0";
1212

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

samples/qt/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pip3 install -r requirements.txt # Install glean_parser
3737
3838
```bash
3939
glean_parser translate src/App/metrics.yaml src/App/pings.yaml -f javascript -o src/App/generated \
40-
--option platform=qt --option version="1.2"
40+
--option platform=qt --option version="1.3"
4141
```
4242

4343
5. Build the app:

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 1.2
9-
import generated 1.2
8+
import org.mozilla.Glean 1.3
9+
import generated 1.3
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 1.2
5-
import generated 1.2
4+
import org.mozilla.Glean 1.3
5+
import generated 1.3
66

77
import App 1.0
88

0 commit comments

Comments
 (0)