Skip to content

Commit deebc15

Browse files
committed
Merge branch 'release-v1.2.0' into release
2 parents e165e69 + 5eb5598 commit deebc15

File tree

33 files changed

+3810
-4768
lines changed

33 files changed

+3810
-4768
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.1"
182+
--option platform=qt --option version="1.2"
183183
- run:
184184
name: Run Qt sample tests
185185
command: |

.dictionary

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
personal_ws-1.1 en 73
1+
personal_ws-1.1 en 76
22
API's
33
APIs
44
BUGFIX
@@ -8,6 +8,7 @@ Changelog
88
CircleCI
99
Ciufo
1010
CommonJS
11+
ESM
1112
Glean's
1213
Gzip
1314
HTTPS
@@ -35,7 +36,9 @@ booleans
3536
brizental
3637
changelog
3738
chutten
39+
ci
3840
compat
41+
config
3942
datetime
4043
deserialize
4144
deserializing

.github/dependabot.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,24 @@ updates:
33
- package-ecosystem: "npm"
44
directory: "/glean"
55
schedule:
6-
interval: "weekly"
6+
interval: "monthly"
77
- package-ecosystem: "npm"
88
directory: "/automation"
99
schedule:
10-
interval: "weekly"
10+
interval: "monthly"
1111
- package-ecosystem: "npm"
1212
directory: "/samples/browser/webext"
1313
schedule:
14-
interval: "weekly"
14+
interval: "monthly"
1515
- package-ecosystem: "npm"
1616
directory: "/samples/browser/web"
1717
schedule:
18-
interval: "weekly"
18+
interval: "monthly"
1919
- package-ecosystem: "npm"
2020
directory: "/samples/node"
2121
schedule:
22-
interval: "weekly"
22+
interval: "monthly"
2323
- package-ecosystem: "npm"
2424
directory: "/glean/tests/unit/platform/utils/webext/sample"
2525
schedule:
26-
interval: "weekly"
26+
interval: "monthly"

CHANGELOG.md

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

3-
[Full changelog](https://github.com/mozilla/glean.js/compare/v1.1.0...main)
3+
[Full changelog](https://github.com/mozilla/glean.js/compare/v1.2.0...main)
4+
5+
# v1.2.0 (2022-09-21)
6+
7+
[Full changelog](https://github.com/mozilla/glean.js/compare/v1.1.0...v1.2.0)
8+
9+
* [#1513](https://github.com/mozilla/glean.js/pull/1513): Bump URL metric character limit to 8k to support longer URLs. URLs that are too long now are truncated to `URL_MAX_LENGTH` and still recorded along with an Overflow error.
10+
* [#1500](https://github.com/mozilla/glean.js/pull/1500): BUGFIX: Update how we invoke CLI python script to fix `npm run glean` behavior on Windows.
11+
* [#1457](https://github.com/mozilla/glean.js/pull/1457): Update `ts-node` to 10.8.0 to resolve ESM issues when running tests inside of `webext` sample project.
12+
* [#1452](https://github.com/mozilla/glean.js/pull/1452): Remove `glean.restarted` trailing events from events list.
13+
* [#1450](https://github.com/mozilla/glean.js/pull/1450): Update `ts-node` to 10.8.0 to resolve ESM issues when running tests.
14+
* [#1449](https://github.com/mozilla/glean.js/pull/1449): BUGFIX: Add missing quotes to `prepare-release` script to fix issues with version numbers in Qt sample README & circle ci config.
15+
* [#1449](https://github.com/mozilla/glean.js/pull/1449): Update Qt sample project docs to include note about problems with different version numbers of Qt commands.
416

517
# v1.1.0 (2022-07-18)
618

automation/README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Glean.js automation
22

3+
## Setup
4+
5+
1. Install dependencies
6+
7+
```
8+
npm install
9+
```
10+
11+
2. Link the `@mozilla/glean` package. There is a convenience script for that:
12+
13+
```
14+
npm run link:glean
15+
```
16+
17+
> **Note**: If you get an error complaining about permissions of `node_modules` at any point,
18+
> just re-run these two commands and the issue should resolve.
19+
20+
321
## Size
422

523
The size project contains scripts

automation/compat/tests/utils.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export class App {
2828
});
2929

3030
this.server = new DevServer({
31+
allowedHosts: 'all',
3132
static: {
3233
directory: path.join(__dirname, "../"),
3334
},

0 commit comments

Comments
 (0)