Skip to content

Commit

Permalink
Merge branch 'release-37.0.0' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
badboy committed Apr 30, 2021
2 parents e315fa3 + fee7770 commit 0a40b48
Show file tree
Hide file tree
Showing 101 changed files with 5,265 additions and 4,459 deletions.
2 changes: 1 addition & 1 deletion .buildconfig.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
libraryVersion: 36.0.1
libraryVersion: 37.0.0
groupId: org.mozilla.telemetry
projects:
glean:
Expand Down
20 changes: 11 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ commands:
sudo apt install python3-pip
pip3 install glean_parser
glean_parser coverage --allow-reserved -c glean_coverage.txt -f codecovio -o codecov.json glean-core/metrics.yaml
bash <(curl -s https://codecov.io/bash) -X yaml -f codecov.json
bin/codecov.sh -X yaml -f codecov.json
install-rustup:
steps:
Expand Down Expand Up @@ -506,7 +506,7 @@ jobs:

Check Swift formatting:
macos:
xcode: "12.3.0"
xcode: "12.4.0"
steps:
- checkout
- run:
Expand All @@ -522,13 +522,14 @@ jobs:
iOS build and test:
macos:
xcode: "12.3.0"
xcode: "12.4.0"
steps:
- checkout
- run:
name: Install new carthage
command: |
brew upgrade carthage
time brew update
time brew upgrade carthage
- run:
name: Set Ruby Version
command: echo 'chruby ruby-2.7.2' >> ~/.bash_profile
Expand Down Expand Up @@ -628,14 +629,15 @@ jobs:

iOS integration test:
macos:
xcode: "12.3.0"
xcode: "12.4.0"
steps:
- checkout
- skip-if-doc-only
- run:
name: Install new carthage
command: |
brew upgrade carthage
time brew update
time brew upgrade carthage
- install-rustup
- setup-rust-toolchain
- run:
Expand Down Expand Up @@ -703,7 +705,7 @@ jobs:

Carthage release:
macos:
xcode: "12.3.0"
xcode: "12.4.0"
steps:
- checkout
- attach_workspace:
Expand Down Expand Up @@ -925,7 +927,7 @@ jobs:
pypi-macos-release:
macos:
xcode: "12.3.0"
xcode: "12.4.0"
steps:
- install-rustup
- setup-rust-toolchain
Expand Down Expand Up @@ -957,7 +959,7 @@ jobs:
pypi-macos-arm64-release:
macos:
xcode: "12.3.0"
xcode: "12.4.0"
steps:
- install-rustup
- setup-rust-toolchain
Expand Down
3 changes: 2 additions & 1 deletion .dictionary
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
personal_ws-1.1 en 219 utf-8
personal_ws-1.1 en 220 utf-8
AAR
AARs
ABI
Expand Down Expand Up @@ -185,6 +185,7 @@ rkv
rkv's
runtime
runtimes
rustc
rustup
schemas
sdk
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
docs/*/book
docs/*/shared/
docs/user/appendix/changelog.md
target
.cargo
Expand Down
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
# Unreleased changes

[Full changelog](https://github.com/mozilla/glean/compare/v36.0.1...main)
[Full changelog](https://github.com/mozilla/glean/compare/v37.0.0...main)

# v37.0.0 (2021-04-30)

[Full changelog](https://github.com/mozilla/glean/compare/v36.0.1...v37.0.0)

* General
* **Breaking Change**: "deletion-request" pings now include the reason upload was disabled: `at_init` (Glean detected a change between runs) or `set_upload_enabled` (Glean was told of a change as it happened). ([#1593](https://github.com/mozilla/glean/pull/1593)).
* Attempt to upload a ping even in the face of IO Errors ([#1576](https://github.com/mozilla/glean/pull/1576)).
* Implement an additional check to avoid crash due to faulty timezone offset ([#1581](https://github.com/mozilla/glean/pull/1581))
* This now records a new metric `glean.time.invalid_timezone_offset`, counting how often we failed to get a valid timezone offset.
* Use proper paths throughout to hopefully handle non-UTF-8 paths more gracefully ([#1596](https://github.com/mozilla/glean/pull/1596))
* Updated `glean_parser` version to 3.2.0 ([#1609](https://github.com/mozilla/glean/pull/1608))
* iOS
* Code generator: Ensure at least pip 20.3 is available in iOS build ([#1590](https://github.com/mozilla/glean/pull/1590))

# v36.0.1 (2021-04-09)

Expand Down
31 changes: 16 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 0a40b48

Please sign in to comment.