Skip to content

Commit d9fc0bc

Browse files
committed
Merge branch 'release-v65.2.0' into release
2 parents f5b0ca4 + 515d396 commit d9fc0bc

File tree

32 files changed

+1089
-327
lines changed

32 files changed

+1089
-327
lines changed

.buildconfig.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
libraryVersion: 65.1.1
1+
libraryVersion: 65.2.0
22
groupId: org.mozilla.telemetry
33
projects:
44
glean:

.circleci/config.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ jobs:
498498

499499
Check Swift formatting:
500500
macos:
501-
xcode: "15.1"
501+
xcode: "16.2"
502502
resource_class: "macos.m1.medium.gen1"
503503
steps:
504504
- checkout
@@ -516,7 +516,7 @@ jobs:
516516
517517
iOS build and test:
518518
macos:
519-
xcode: "15.1"
519+
xcode: "16.2"
520520
resource_class: "macos.m1.medium.gen1"
521521
steps:
522522
- checkout
@@ -529,16 +529,16 @@ jobs:
529529
- setup-rust-toolchain
530530
- restore_cache:
531531
name: Restore rubygems cache
532-
key: swift-docs-gems-v20
532+
key: swift-docs-gems-v21
533533
- run:
534534
name: Install jazzy
535535
command: gem install --no-document jazzy
536536
- save_cache:
537537
name: Save rubygems cache
538538
# NEEDS TO CHANGE WHEN JAZZY OR RUBY IS UPDATED
539-
key: swift-docs-gems-v20
539+
key: swift-docs-gems-v21
540540
paths:
541-
- ~/.rbenv/versions/3.1.4/lib/ruby/gems/3.1.0
541+
- ~/.rbenv/versions/3.3.5/lib/ruby/gems/3.3.0
542542
- run:
543543
name: Setup build environment
544544
command: |
@@ -554,7 +554,7 @@ jobs:
554554
DEVICES=$(xcrun xctrace list devices 2>&1)
555555
echo "$DEVICES"
556556
# Pick a device and start it
557-
UUID=$(echo "$DEVICES" | grep --max-count=1 'iPhone 15 Simulator (17' | awk -F'[()]' '{print $4}')
557+
UUID=$(echo "$DEVICES" | grep --max-count=1 'iPhone 16 Simulator (18' | awk -F'[()]' '{print $4}')
558558
xcrun simctl boot "$UUID"
559559
# Store build type for use in cache key
560560
if [ -z "${CIRCLE_TAG}" ]; then
@@ -616,7 +616,7 @@ jobs:
616616

617617
iOS integration test:
618618
macos:
619-
xcode: "15.1"
619+
xcode: "16.2"
620620
resource_class: "macos.m1.medium.gen1"
621621
steps:
622622
- checkout
@@ -638,7 +638,7 @@ jobs:
638638
DEVICES=$(xcrun xctrace list devices 2>&1)
639639
echo "$DEVICES"
640640
# Pick a device and start it
641-
UUID=$(echo "$DEVICES" | grep --max-count=1 'iPhone 15 Simulator (17' | awk -F'[()]' '{print $4}')
641+
UUID=$(echo "$DEVICES" | grep --max-count=1 'iPhone 16 Simulator (18' | awk -F'[()]' '{print $4}')
642642
xcrun simctl boot "$UUID"
643643
- run:
644644
name: Build XCFramework archive
@@ -661,7 +661,7 @@ jobs:
661661

662662
iOS Framework release:
663663
macos:
664-
xcode: "15.1"
664+
xcode: "16.2"
665665
resource_class: "macos.m1.medium.gen1"
666666
steps:
667667
- checkout
@@ -900,7 +900,7 @@ jobs:
900900
901901
pypi-macos-release:
902902
macos:
903-
xcode: "15.1"
903+
xcode: "16.2"
904904
resource_class: "macos.m1.medium.gen1"
905905
steps:
906906
- install-rustup

.circleci/jazzy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ xcodebuild_arguments:
1010
- "-scheme"
1111
- "Glean"
1212
- "-destination"
13-
- "platform=iOS Simulator,name=iPhone 15"
13+
- "platform=iOS Simulator,name=iPhone 16"

.dictionary

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
personal_ws-1.1 en 302 utf-8
1+
personal_ws-1.1 en 303 utf-8
22
AAR
33
AARs
44
ABI
@@ -190,6 +190,7 @@ html
190190
iMacs
191191
illumos
192192
init
193+
initializations
193194
initializer
194195
inlined
195196
instrumentations

CHANGELOG.md

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

3-
[Full changelog](https://github.com/mozilla/glean/compare/v65.1.1...main)
3+
[Full changelog](https://github.com/mozilla/glean/compare/v65.2.0...main)
4+
5+
# v65.2.0 (2025-09-26)
6+
7+
[Full changelog](https://github.com/mozilla/glean/compare/v65.1.1...v65.2.0)
8+
9+
* Swift
10+
* Glean for iOS is now being built with Xcode 16.2 ([#3189](https://github.com/mozilla/glean/pull/3189))
11+
* General
12+
* Report running count of initializations in "health" ping ([bug 1990624](https://bugzilla.mozilla.org/show_bug.cgi?id=1990624))
13+
* Report db file sizes during init phases ([bug 1990627](https://bugzilla.mozilla.org/show_bug.cgi?id=1990627))
414

515
# v65.1.1 (2025-09-16)
616

Cargo.lock

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

0 commit comments

Comments
 (0)