Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
132 changes: 66 additions & 66 deletions apps/bare-expo/ios/Podfile.lock

Large diffs are not rendered by default.

116 changes: 70 additions & 46 deletions apps/expo-go/ios/Podfile.lock

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions packages/@expo/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@

### 🐛 Bug fixes

### 💡 Others

## 56.1.11 — 2026-05-23

### 🐛 Bug fixes

- Fix launching apps on physical iOS devices causing system-dependent crashes ([#46128](https://github.com/expo/expo/pull/46128) by [@kitten](https://github.com/kitten))
- Fix post-rewrite resolutions failing since they may be resolved from a random module path ([#46172](https://github.com/expo/expo/pull/46172) by [@kitten](https://github.com/kitten))

Expand Down
12 changes: 6 additions & 6 deletions packages/@expo/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@expo/cli",
"version": "56.1.10",
"version": "56.1.11",
"description": "The Expo CLI",
"main": "main.js",
"bin": {
Expand Down Expand Up @@ -50,22 +50,22 @@
"homepage": "https://github.com/expo/expo/tree/main/packages/@expo/cli",
"dependencies": {
"@expo/code-signing-certificates": "^0.0.6",
"@expo/config": "workspace:~56.0.8",
"@expo/config-plugins": "workspace:~56.0.7",
"@expo/config": "workspace:~56.0.9",
"@expo/config-plugins": "workspace:~56.0.8",
"@expo/devcert": "^1.2.1",
"@expo/env": "workspace:~2.3.0",
"@expo/image-utils": "workspace:^0.10.0",
"@expo/image-utils": "workspace:^0.10.1",
"@expo/inline-modules": "workspace:^0.0.9",
"@expo/json-file": "workspace:^10.2.0",
"@expo/log-box": "workspace:^56.0.12",
"@expo/metro": "~56.0.0",
"@expo/metro-config": "workspace:~56.0.11",
"@expo/metro-config": "workspace:~56.0.12",
"@expo/metro-file-map": "workspace:^56.0.3",
"@expo/osascript": "workspace:^2.6.0",
"@expo/package-manager": "workspace:^1.12.0",
"@expo/plist": "workspace:^0.7.0",
"@expo/prebuild-config": "workspace:^56.0.12",
"@expo/require-utils": "workspace:^56.1.2",
"@expo/require-utils": "workspace:^56.1.3",
"@expo/router-server": "workspace:^56.0.11",
"@expo/schema-utils": "workspace:^56.0.0",
"@expo/spawn-async": "^1.8.0",
Expand Down
4 changes: 4 additions & 0 deletions packages/@expo/config-plugins/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

### 💡 Others

## 56.0.8 — 2026-05-23

_This version does not introduce any user-facing changes._

## 56.0.7 — 2026-05-20

### 🎉 New features
Expand Down
4 changes: 2 additions & 2 deletions packages/@expo/config-plugins/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@expo/config-plugins",
"version": "56.0.7",
"version": "56.0.8",
"description": "A library for Expo config plugins",
"main": "build/index.js",
"types": "build/index.d.ts",
Expand Down Expand Up @@ -57,7 +57,7 @@
"@expo/config-types": "workspace:^56.0.5",
"@expo/json-file": "workspace:~10.2.0",
"@expo/plist": "workspace:^0.7.0",
"@expo/require-utils": "workspace:^56.1.2",
"@expo/require-utils": "workspace:^56.1.3",
"@expo/sdk-runtime-versions": "^1.0.0",
"chalk": "^4.1.2",
"debug": "^4.3.5",
Expand Down
4 changes: 4 additions & 0 deletions packages/@expo/config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

### 💡 Others

## 56.0.9 — 2026-05-23

_This version does not introduce any user-facing changes._

## 56.0.8 — 2026-05-20

### 💡 Others
Expand Down
6 changes: 3 additions & 3 deletions packages/@expo/config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@expo/config",
"version": "56.0.8",
"version": "56.0.9",
"description": "A library for interacting with the app.json",
"main": "build/index.js",
"scripts": {
Expand Down Expand Up @@ -32,10 +32,10 @@
"paths"
],
"dependencies": {
"@expo/config-plugins": "workspace:~56.0.7",
"@expo/config-plugins": "workspace:~56.0.8",
"@expo/config-types": "workspace:^56.0.5",
"@expo/json-file": "workspace:^10.2.0",
"@expo/require-utils": "workspace:^56.1.2",
"@expo/require-utils": "workspace:^56.1.3",
"deepmerge": "^4.3.1",
"getenv": "^2.0.0",
"glob": "^13.0.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/@expo/fingerprint/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,16 @@

### 🐛 Bug fixes

- Fixed unstable fingerprint on Windows. ([#46196](https://github.com/expo/expo/pull/46196) by [@kudo](https://github.com/kudo))

### 💡 Others

- Updated E2E test to use SDK 56 templates. ([#46194](https://github.com/expo/expo/pull/46194) by [@kudo](https://github.com/kudo))

## 0.19.2 — 2026-05-23

_This version does not introduce any user-facing changes._

## 0.19.1 — 2026-05-21

### 🐛 Bug fixes
Expand Down
8 changes: 8 additions & 0 deletions packages/@expo/fingerprint/build/ExpoConfigLoader.js

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

2 changes: 1 addition & 1 deletion packages/@expo/fingerprint/build/ExpoConfigLoader.js.map

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

2 changes: 1 addition & 1 deletion packages/@expo/fingerprint/build/sourcer/Bare.js

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

Loading
Loading