Skip to content

Commit

Permalink
Merge branch 'release-v51.8.1' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
chutten committed Nov 15, 2022
2 parents 1a922f3 + f8b8323 commit 8c60bba
Show file tree
Hide file tree
Showing 30 changed files with 987 additions and 552 deletions.
2 changes: 1 addition & 1 deletion .buildconfig.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
libraryVersion: 51.8.0
libraryVersion: 51.8.1
groupId: org.mozilla.telemetry
projects:
glean:
Expand Down
22 changes: 14 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -487,8 +487,7 @@ jobs:
ruby --version
gem env
- install-rustup
- setup-rust-toolchain:
rust-version: "1.64.0"
- setup-rust-toolchain
- restore_cache:
name: Restore rubygems cache
key: swift-docs-gems-v13
Expand All @@ -507,6 +506,11 @@ jobs:
set -x
rustup target add aarch64-apple-ios aarch64-apple-ios-sim x86_64-apple-ios
# For some reason everything works fine if we use the host clang,
# not the Xcode-bundled clang.
echo '[target.x86_64-apple-darwin]' >> ~/.cargo/config
echo 'linker = "/usr/bin/clang"' >> ~/.cargo/config
# List available devices -- allows us to see what's there
DEVICES=$(xcrun xctrace list devices 2>&1)
echo "$DEVICES"
Expand Down Expand Up @@ -585,14 +589,18 @@ jobs:
- checkout
- skip-if-doc-only
- install-rustup
- setup-rust-toolchain:
rust-version: "1.64.0"
- setup-rust-toolchain
- run:
name: Setup build environment
command: |
set -x
rustup target add aarch64-apple-ios aarch64-apple-ios-sim x86_64-apple-ios
# For some reason everything works fine if we use the host clang,
# not the Xcode-bundled clang.
echo '[target.x86_64-apple-darwin]' >> ~/.cargo/config
echo 'linker = "/usr/bin/clang"' >> ~/.cargo/config
# List available devices -- allows us to see what's there
DEVICES=$(xcrun xctrace list devices 2>&1)
echo "$DEVICES"
Expand Down Expand Up @@ -877,8 +885,7 @@ jobs:
xcode: "13.4.1"
steps:
- install-rustup
- setup-rust-toolchain:
rust-version: "1.64.0"
- setup-rust-toolchain
- checkout
- run:
name: Build and Test Python extension
Expand Down Expand Up @@ -910,8 +917,7 @@ jobs:
xcode: "13.4.1"
steps:
- install-rustup
- setup-rust-toolchain:
rust-version: "1.64.0"
- setup-rust-toolchain
- checkout
- run:
name: Install Python development tools for host
Expand Down
2 changes: 1 addition & 1 deletion .taskcluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ tasks:
name: "Decision Task for cron job ${cron.job_name}"
description: 'Created by a [cron task](https://firefox-ci-tc.services.mozilla.com/tasks/${cron.task_id})'
provisionerId: "glean-${level}"
workerType: "decision"
workerType: "decision-gcp"
tags:
$if: 'tasks_for in ["github-push", "github-pull-request"]'
then:
Expand Down
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Unreleased changes

[Full changelog](https://github.com/mozilla/glean/compare/v51.8.0...main)
[Full changelog](https://github.com/mozilla/glean/compare/v51.8.1...main)

# v51.8.1 (2022-11-15)

[Full changelog](https://github.com/mozilla/glean/compare/v51.8.0...v51.8.1)

* General
* Do not serialize `count` field in distribution payload ([#2267](https://github.com/mozilla/glean/pull/2267))
* BUGFIX: The glean-core "metrics" ping scheduler will now schedule and send "upgrade"-reason pings. ([bug 1800646](https://bugzilla.mozilla.org/show_bug.cgi?id=1800646))

# v51.8.0 (2022-11-03)

Expand Down
8 changes: 4 additions & 4 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 8c60bba

Please sign in to comment.