Skip to content

Commit

Permalink
feat: Update default dependencies to meet React Native 0.64 requirements
Browse files Browse the repository at this point in the history
BREAKING CHANGE: The default dependencies used are now Xcode 12, CocoaPods 1.10.1, Node.js 12
  • Loading branch information
matt-oakes committed Mar 18, 2021
1 parent dd5faa8 commit 34ca501
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/commands/setup_macos_executor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ parameters:
node_version:
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").
type: string
default: "10"
default: "12"

steps:
- run:
Expand Down
6 changes: 3 additions & 3 deletions src/examples/full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ usage:
checkout_code:
executor:
name: rn/linux_js
node_version: '10'
node_version: '12'
steps:
- checkout
- persist_to_workspace:
Expand Down Expand Up @@ -89,7 +89,7 @@ usage:
# Build the iOS app in release mode and do not run tests
- rn/ios_build:
name: build_ios_release
node_version: '10'
node_version: '12'
project_path: ios/Example.xcodeproj
device: "iPhone X"
build_configuration: Release
Expand All @@ -99,7 +99,7 @@ usage:

# Build and test the iOS app in release mode
- rn/ios_build_and_test:
node_version: '10'
node_version: '12'
project_path: "ios/Example.xcodeproj"
device: "iPhone X"
build_configuration: "Release"
Expand Down
2 changes: 1 addition & 1 deletion src/executors/linux_js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ parameters:
node_version:
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").
type: string
default: '10'
default: '12'
resource_class:
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
type: string
Expand Down
2 changes: 1 addition & 1 deletion src/executors/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ parameters:
xcode_version:
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
type: string
default: '11.0.0'
default: "12.4.0"
resource_class:
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
type: string
Expand Down
2 changes: 1 addition & 1 deletion src/jobs/android_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ parameters:
node_version:
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").
type: string
default: '10'
default: '12'

steps:
- attach_workspace:
Expand Down
2 changes: 1 addition & 1 deletion src/jobs/ios_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ parameters:
node_version:
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").
type: string
default: '10'
default: '12'

steps:
- when:
Expand Down
2 changes: 1 addition & 1 deletion src/jobs/ios_build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ parameters:
node_version:
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").
type: string
default: "10"
default: "12"

steps:
- when:
Expand Down

0 comments on commit 34ca501

Please sign in to comment.