Skip to content

Commit

Permalink
Merge branch 'release-v61.0.0' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
badboy committed Aug 21, 2024
2 parents 3c1ee0d + 49ee908 commit 0a72de2
Show file tree
Hide file tree
Showing 29 changed files with 492 additions and 209 deletions.
2 changes: 1 addition & 1 deletion .buildconfig.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
libraryVersion: 60.5.0
libraryVersion: 61.0.0
groupId: org.mozilla.telemetry
projects:
glean:
Expand Down
30 changes: 15 additions & 15 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ jobs:

License check:
docker:
- image: cimg/rust:1.67
- image: cimg/rust:1.76
steps:
- checkout
- run:
Expand All @@ -276,7 +276,7 @@ jobs:

Check vendored schema:
docker:
- image: cimg/rust:1.67
- image: cimg/rust:1.76
steps:
- checkout
- run:
Expand Down Expand Up @@ -306,7 +306,7 @@ jobs:

Check Rust formatting:
docker:
- image: cimg/rust:1.67
- image: cimg/rust:1.76
steps:
- checkout
- run: rustup component add rustfmt
Expand All @@ -315,7 +315,7 @@ jobs:

Lint Rust with clippy:
docker:
- image: cimg/rust:1.67
- image: cimg/rust:1.76
steps:
- checkout
- run: rustup component add clippy
Expand All @@ -332,7 +332,7 @@ jobs:

Rust tests - stable:
docker:
- image: cimg/rust:1.67
- image: cimg/rust:1.76
resource_class: "medium+"
steps:
- test-rust
Expand All @@ -349,22 +349,22 @@ jobs:
Rust tests - beta:
docker:
- image: cimg/rust:1.67
- image: cimg/rust:1.76
steps:
- test-rust:
rust-version: "beta"

Rust tests - minimum version:
docker:
- image: cimg/rust:1.67
- image: cimg/rust:1.76
resource_class: "medium+"
steps:
- test-rust:
rust-version: "1.66.1"
rust-version: "1.76.0"

Generate Rust documentation:
docker:
- image: cimg/rust:1.67
- image: cimg/rust:1.76
steps:
- checkout
- run:
Expand Down Expand Up @@ -660,7 +660,7 @@ jobs:
glean-swift release:
docker:
- image: cimg/rust:1.67
- image: cimg/rust:1.76
steps:
- checkout
- attach_workspace:
Expand Down Expand Up @@ -984,12 +984,12 @@ jobs:
docs-linkcheck:
docker:
- image: cimg/node:17.9
- image: cimg/node:22.6
steps:
- checkout
- run:
name: Install linkchecker
command: npm install -g link-checker
command: npm install link-checker
- attach_workspace:
at: build/
- run:
Expand All @@ -1015,7 +1015,7 @@ jobs:
# via https://circleci.com/blog/deploying-documentation-to-github-pages-with-continuous-integration/
docs-deploy:
docker:
- image: node:8.10.0
- image: cimg/node:22.6
steps:
- checkout
- attach_workspace:
Expand All @@ -1038,8 +1038,8 @@ jobs:
command: |
git config user.email "jrediger@mozilla.com"
git config user.name "CircleCI docs-deploy job"
npm install -g --silent gh-pages@2.0.1
gh-pages --dotfiles --message "[skip ci] Updates" --dist build/docs
npm install gh-pages@6.1.1
npx gh-pages --dotfiles --message "[skip ci] Updates" --dist build/docs
###########################################################################
# Workflows
Expand Down
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# Unreleased changes

[Full changelog](https://github.com/mozilla/glean/compare/v60.5.0...main)
[Full changelog](https://github.com/mozilla/glean/compare/v61.0.0...main)

# v61.0.0 (2024-08-21)

[Full changelog](https://github.com/mozilla/glean/compare/v60.5.0...v61.0.0)

* General
* BREAKING CHANGE: Updated to UniFFI 0.28.0 ([#2920](https://github.com/mozilla/glean/pull/2920))
* BREAKING CHANGE: Update to `glean_parser` v15.0.0 ([release notes](https://github.com/mozilla/glean_parser/releases/tag/v15.0.0))
* Kotlin
* BREAKING CHANGE: Remove now obsolete type alias ([#2935](https://github.com/mozilla/glean/issues/2935))

# v60.5.0 (2024-08-06)

Expand Down
73 changes: 25 additions & 48 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 0a72de2

Please sign in to comment.