Skip to content

Commit ffb038e

Browse files
committed
Merge branch 'release-v0.28.0' into release
2 parents 572f6c1 + cb17624 commit ffb038e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+2634
-2159
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ jobs:
156156
pip install -r requirements.txt
157157
glean_parser translate src/App/metrics.yaml src/App/pings.yaml \
158158
-f javascript -o src/App/generated \
159-
--option platform=qt --option version="0.27"
159+
--option platform=qt --option version="0.28"
160160
- run:
161161
name: Run Qt sample tests
162162
command: |

CHANGELOG.md

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

3-
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.27.0...main)
3+
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.28.0...main)
4+
5+
# v0.28.0 (2021-12-08)
6+
7+
[Full changelog](https://github.com/mozilla/glean.js/compare/v0.27.0...v0.28.0)
8+
9+
* [#984](https://github.com/mozilla/glean.js/pull/984): BUGFIX: Return correct upload result in case an error happens while building a ping request.
10+
* [#988](https://github.com/mozilla/glean.js/pull/988): BUGFIX: Enforce rate limitation at upload time, not at ping submission time.
11+
* Note: This change required a big refactoring of the internal uploading logic.
12+
* [#994](https://github.com/mozilla/glean.js/pull/994): Automatically restart ping upload once the rate limit window is ended.
13+
* Prior to this change, ping uploading would only be resumed once the `.submit()` API was called again, even if Glean was not throttled anymore.
14+
* **Note**: this change does not apply to QML. We used the `setTimeout`/`clearTimeout` APIs in this feature and those are not available on the QML platform. Follow [Bug 1743140](https://bugzilla.mozilla.org/show_bug.cgi?id=1743140) for updates.
15+
* [#1015](https://github.com/mozilla/glean.js/pull/1015): BUGFIX: Make attempting to call the `setUploadEnabled` API before initializing Glean a no-op.
16+
* [#1016](https://github.com/mozilla/glean.js/pull/1016): BUGFIX: Make shutdown a no-op in case Glean is not initialized.
417

518
# v0.27.0 (2021-11-22)
619

benchmarks/package-lock.json

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

benchmarks/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"devDependencies": {
1616
"npm-run-all": "^4.1.5",
1717
"@octokit/request": "^5.6.2",
18-
"webpack": "^5.64.2",
18+
"webpack": "^5.64.4",
1919
"webpack-bundle-analyzer": "^4.5.0",
2020
"webpack-cli": "^4.9.1"
2121
}

0 commit comments

Comments
 (0)