Skip to content

Commit 34ca501

Browse files
committed
feat: Update default dependencies to meet React Native 0.64 requirements
BREAKING CHANGE: The default dependencies used are now Xcode 12, CocoaPods 1.10.1, Node.js 12
1 parent dd5faa8 commit 34ca501

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

src/commands/setup_macos_executor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ parameters:
44
node_version:
55
description: The version of Node to use. This can be either a major version ("8"), a major and minor ("8.4"), or a fully qualified version ("8.4.1").
66
type: string
7-
default: "10"
7+
default: "12"
88

99
steps:
1010
- run:

src/examples/full.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ usage:
1212
checkout_code:
1313
executor:
1414
name: rn/linux_js
15-
node_version: '10'
15+
node_version: '12'
1616
steps:
1717
- checkout
1818
- persist_to_workspace:
@@ -89,7 +89,7 @@ usage:
8989
# Build the iOS app in release mode and do not run tests
9090
- rn/ios_build:
9191
name: build_ios_release
92-
node_version: '10'
92+
node_version: '12'
9393
project_path: ios/Example.xcodeproj
9494
device: "iPhone X"
9595
build_configuration: Release
@@ -99,7 +99,7 @@ usage:
9999

100100
# Build and test the iOS app in release mode
101101
- rn/ios_build_and_test:
102-
node_version: '10'
102+
node_version: '12'
103103
project_path: "ios/Example.xcodeproj"
104104
device: "iPhone X"
105105
build_configuration: "Release"

src/executors/linux_js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ parameters:
22
node_version:
33
description: The version of Node to use. This can be either a major version ("8"), a major and minor ("8.4"), or a fully qualified version ("8.4.1").
44
type: string
5-
default: '10'
5+
default: '12'
66
resource_class:
77
description: Changes the resource class of the executor. Requires a support request to enable the resource_class parameter. See https://circleci.com/docs/2.0/configuration-reference/#resource_class
88
type: string

src/executors/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ parameters:
22
xcode_version:
33
description: The version of Xcode to use. See here for the list of supported versions https://circleci.com/docs/2.0/testing-ios/#supported-xcode-versions
44
type: string
5-
default: '11.0.0'
5+
default: "12.4.0"
66
resource_class:
77
description: Changes the resource class of the executor. Requires a support request to enable the resource_class parameter. See https://circleci.com/docs/2.0/configuration-reference/#resource_class
88
type: string

src/jobs/android_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ parameters:
5555
node_version:
5656
description: The version of Node to use. This can be either a major version ("8"), a major and minor ("8.4"), or a fully qualified version ("8.4.1").
5757
type: string
58-
default: '10'
58+
default: '12'
5959

6060
steps:
6161
- attach_workspace:

src/jobs/ios_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ parameters:
5252
node_version:
5353
description: The version of Node to use. This can be either a major version ("8"), a major and minor ("8.4"), or a fully qualified version ("8.4.1").
5454
type: string
55-
default: '10'
55+
default: '12'
5656

5757
steps:
5858
- when:

src/jobs/ios_build_and_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ parameters:
7070
node_version:
7171
description: The version of Node to use. This can be either a major version ("8"), a major and minor ("8.4"), or a fully qualified version ("8.4.1").
7272
type: string
73-
default: "10"
73+
default: "12"
7474

7575
steps:
7676
- when:

0 commit comments

Comments
 (0)