From 9885a3c701fd8612dea175aebcff15a92aa23a13 Mon Sep 17 00:00:00 2001 From: Cedric van Putten Date: Wed, 15 Oct 2025 15:42:28 +0200 Subject: [PATCH 1/2] fix(eas-json): make `language` optional in `IosSubmitProfile` type --- packages/eas-json/src/submit/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/eas-json/src/submit/types.ts b/packages/eas-json/src/submit/types.ts index 4677368e69..3a6c7f098a 100644 --- a/packages/eas-json/src/submit/types.ts +++ b/packages/eas-json/src/submit/types.ts @@ -28,7 +28,7 @@ export interface IosSubmitProfile { ascAppId?: string; appleTeamId?: string; sku?: string; - language: string; + language?: string; companyName?: string; appName?: string; bundleIdentifier?: string; From e628488d83e91e903c5217e8d14acff5c8e9dd8d Mon Sep 17 00:00:00 2001 From: Cedric van Putten Date: Wed, 15 Oct 2025 15:45:10 +0200 Subject: [PATCH 2/2] docs: add missing changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ccf375d8e3..ab82b3b542 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ This is the log of notable changes to EAS CLI and related packages. ### ๐Ÿ› Bug fixes +- Make `language` an optional property in `IosSubmitProfile` type in `@expo/eas-json`. ([#3225](https://github.com/expo/eas-cli/pull/3225) by [@byCedric](https://github.com/byCedric)) + ### ๐Ÿงน Chores ## [16.23.0](https://github.com/expo/eas-cli/releases/tag/v16.23.0) - 2025-10-14