Skip to content

Commit 3839eca

Browse files
committed
Bumped version to 1.4.0
1 parent ded4fe0 commit 3839eca

File tree

10 files changed

+19
-15
lines changed

10 files changed

+19
-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.3"
182+
--option platform=qt --option version="1.4"
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.3.0...main)
3+
[Full changelog](https://github.com/mozilla/glean.js/compare/v1.4.0...main)
4+
5+
# v1.4.0 (2023-05-10)
6+
7+
[Full changelog](https://github.com/mozilla/glean.js/compare/v1.3.0...v1.4.0)
48

59
* [#1671](https://github.com/mozilla/glean.js/pull/1671): Allow building on Windows machines.
610
* [#1674](https://github.com/mozilla/glean.js/pull/1674): Upgrade `glean_parser` version to `7.2.1`.

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 v6.2.1. DO NOT EDIT. -->
1+
<!-- AUTOGENERATED BY glean_parser v7.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 v6.2.1. DO NOT EDIT. -->
65+
<!-- AUTOGENERATED BY glean_parser v7.2.1. DO NOT EDIT. -->
6666

docs/reference/sizes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ To check out a comprehensive list of which metrics are collected by Glean and th
1313
|| Size |
1414
|--|--|
1515
|web|**56 KB**|
16-
|webext|**56 KB**|
16+
|webext|**55 KB**|
1717
|node|**55 KB**|
1818
|QML|**91 KB**|
1919
<!-- ! -->
@@ -37,7 +37,7 @@ to external consumers.
3737
|custom_distribution|5.4 KB |5.4 KB |5.4 KB |
3838
|datetime|1.1 KB |1.1 KB |1.1 KB |
3939
|event|1008 bytes |1008 bytes |1008 bytes |
40-
|labeled|362 bytes |375 bytes |361 bytes |
40+
|labeled|361 bytes |361 bytes |361 bytes |
4141
|memory_distribution|5.0 KB |5.0 KB |5.0 KB |
4242
|quantity|1.7 KB |1.7 KB |1.7 KB |
4343
|string|998 bytes |998 bytes |998 bytes |

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.3.0",
3+
"version": "1.4.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.3.0";
11+
export const GLEAN_VERSION = "1.4.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.3"
40+
--option platform=qt --option version="1.4"
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.3
9-
import generated 1.3
8+
import org.mozilla.Glean 1.4
9+
import generated 1.4
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.3
5-
import generated 1.3
4+
import org.mozilla.Glean 1.4
5+
import generated 1.4
66

77
import App 1.0
88

0 commit comments

Comments
 (0)