Skip to content

Commit

Permalink
Merge branch 'main' into feat/modular-functions
Browse files Browse the repository at this point in the history
  • Loading branch information
russellwheatley authored Dec 6, 2022
2 parents 9bcf465 + 254e7ad commit 19f6ccf
Show file tree
Hide file tree
Showing 12 changed files with 714 additions and 646 deletions.
32 changes: 0 additions & 32 deletions .github/stale.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/create_test_patches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT

- uses: actions/cache@v3
name: Yarn Cache
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
node-version: 16
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Yarn Cache
id: yarn-cache
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
java-version: '11'
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Yarn Cache
id: yarn-cache
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
node-version: 16
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Yarn Cache
id: yarn-cache
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
node-version: 16
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Yarn Cache
id: yarn-cache
Expand Down
38 changes: 38 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
name: Mark stale issues and pull requests
on:
workflow_dispatch:
schedule:
- cron: 35 * * * *
permissions:
contents: read
jobs:
stale:
permissions:
issues: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v6
with:
operations-per-run: 1000
stale-issue-message: |
Hello 👋, to help manage issues we automatically close stale issues.
This issue has been automatically marked as stale because it has not had activity for quite some time.Has this issue been fixed, or does it still require attention?
> This issue will be closed in 15 days if no further activity occurs.
Thank you for your contributions.
stale-pr-message: |
Hello 👋, this PR has been opened for more than 2 months with no activity on it.
If you think this is a mistake please comment and ping a maintainer to get this merged ASAP! Thanks for contributing!
You have 15 days until this gets closed automatically
exempt-issue-labels: '📌%20pin,Help:%20Good%20First%20Issue,Blocked:%20Needs%20Review'
exempt-pr-labels: '📌%20pin,Help:%20Good First%20Issue,Blocked:%20Needs%20Review'
close-issue-reason: not_planned
days-before-stale: 28
days-before-close: 15
stale-issue-label: 'Type: Stale'
6 changes: 3 additions & 3 deletions .github/workflows/tests_e2e_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ jobs:
- name: Set workflow variables
id: workflow-variables
run: |
echo "::set-output name=metro-cache::$HOME/.metro"
echo "::set-output name=yarn-cache-dir::$(yarn cache dir)"
echo "::set-output name=tempdir::$TMPDIR"
echo "metro-cache=$HOME/.metro" >> $GITHUB_OUTPUT
echo "yarn-cache-dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
echo "tempdir=$TMPDIR" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Yarn Cache
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/tests_e2e_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,17 +48,17 @@ jobs:
with:
xcode-version: 'latest-stable'

- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 50

# Set path variables needed for caches
- name: Set workflow variables
id: workflow-variables
run: |
echo "::set-output name=metro-cache::$HOME/.metro"
echo "::set-output name=xcode-version::$(xcodebuild -version|tail -1|cut -f3 -d' ')"
echo "::set-output name=yarn-cache-dir::$(yarn cache dir)"
echo "metro-cache=$HOME/.metro" >> $GITHUB_OUTPUT
echo "xcode-version=$(xcodebuild -version|tail -1|cut -f3 -d' ')" >> $GITHUB_OUTPUT
echo "yarn-cache-dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Yarn Cache
Expand All @@ -76,7 +76,7 @@ jobs:
key: ${{ runner.os }}-detox-framework-cache-${{ steps.workflow-variables.outputs.xcode-version }}

# Detox is compiled during yarn install, using Xcode, set up cache first
- uses: hendrikmuhs/ccache-action@v1
- uses: hendrikmuhs/ccache-action@v1.2
name: Xcode Compile Cache
with:
key: ${{ runner.os }}-v2 # makes a unique key w/related restore key internally
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests_jest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
node-version: 16
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Yarn Cache
id: yarn-cache
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,37 +51,37 @@
"format:markdown": "prettier --write \"docs/**/*.md\""
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@octokit/core": "^4.1.0",
"@tsconfig/node12": "^1.0.11",
"@types/react": "^17.0.48",
"@types/react-native": "^0.70.6",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"@types/react": "^18.0.25",
"@types/react-native": "^0.70.7",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"babel-jest": "^29.3.1",
"clang-format": "^1.8.0",
"conventional-changelog-cli": "^2.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.27.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react": "^7.31.11",
"genversion": "^3.1.1",
"google-java-format": "^1.1.0",
"inquirer": "^8.2.4",
"jest": "^29.3.1",
"lerna": "^6.0.3",
"prettier": "^2.7.1",
"lerna": "^6.1.0",
"prettier": "^2.8.0",
"regenerator-transform": "^0.15.1",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
},
"resolutions": {
"@types/react": "^18.0.25"
"@types/react": "^18.0.26"
},
"workspaces": {
"packages": [
Expand Down
68 changes: 34 additions & 34 deletions tests/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1190,74 +1190,74 @@ PODS:
- React-jsi (= 0.70.6)
- React-logger (= 0.70.6)
- React-perflogger (= 0.70.6)
- RNFBAnalytics (16.4.5):
- RNFBAnalytics (16.4.6):
- Firebase/Analytics (= 10.2.0)
- GoogleAppMeasurementOnDeviceConversion (= 10.2.0)
- React-Core
- RNFBApp
- RNFBApp (16.4.5):
- RNFBApp (16.4.6):
- Firebase/CoreOnly (= 10.2.0)
- React-Core
- RNFBAppCheck (16.4.5):
- RNFBAppCheck (16.4.6):
- Firebase/AppCheck (= 10.2.0)
- React-Core
- RNFBApp
- RNFBAppDistribution (16.4.5):
- RNFBAppDistribution (16.4.6):
- Firebase/AppDistribution (= 10.2.0)
- React-Core
- RNFBApp
- RNFBAuth (16.4.5):
- RNFBAuth (16.4.6):
- Firebase/Auth (= 10.2.0)
- React-Core
- RNFBApp
- RNFBCrashlytics (16.4.5):
- RNFBCrashlytics (16.4.6):
- Firebase/Crashlytics (= 10.2.0)
- FirebaseCoreExtension (= 10.2.0)
- React-Core
- RNFBApp
- RNFBDatabase (16.4.5):
- RNFBDatabase (16.4.6):
- Firebase/Database (= 10.2.0)
- React-Core
- RNFBApp
- RNFBDynamicLinks (16.4.5):
- RNFBDynamicLinks (16.4.6):
- Firebase/DynamicLinks (= 10.2.0)
- GoogleUtilities/AppDelegateSwizzler
- React-Core
- RNFBApp
- RNFBFirestore (16.4.5):
- RNFBFirestore (16.4.6):
- Firebase/Firestore (= 10.2.0)
- nanopb (< 2.30910.0, >= 2.30908.0)
- React-Core
- RNFBApp
- RNFBFunctions (16.4.5):
- RNFBFunctions (16.4.6):
- Firebase/Functions (= 10.2.0)
- React-Core
- RNFBApp
- RNFBInAppMessaging (16.4.5):
- RNFBInAppMessaging (16.4.6):
- Firebase/InAppMessaging (= 10.2.0)
- React-Core
- RNFBApp
- RNFBInstallations (16.4.5):
- RNFBInstallations (16.4.6):
- Firebase/Installations (= 10.2.0)
- React-Core
- RNFBApp
- RNFBMessaging (16.4.5):
- RNFBMessaging (16.4.6):
- Firebase/Messaging (= 10.2.0)
- FirebaseCoreExtension (= 10.2.0)
- React-Core
- RNFBApp
- RNFBML (16.4.5):
- RNFBML (16.4.6):
- React-Core
- RNFBApp
- RNFBPerf (16.4.5):
- RNFBPerf (16.4.6):
- Firebase/Performance (= 10.2.0)
- React-Core
- RNFBApp
- RNFBRemoteConfig (16.4.5):
- RNFBRemoteConfig (16.4.6):
- Firebase/RemoteConfig (= 10.2.0)
- React-Core
- RNFBApp
- RNFBStorage (16.4.5):
- RNFBStorage (16.4.6):
- Firebase/Storage (= 10.2.0)
- React-Core
- RNFBApp
Expand Down Expand Up @@ -1541,23 +1541,23 @@ SPEC CHECKSUMS:
React-RCTVibration: c75ceef7aa60a33b2d5731ebe5800ddde40cefc4
React-runtimeexecutor: 15437b576139df27635400de0599d9844f1ab817
ReactCommon: 349be31adeecffc7986a0de875d7fb0dcf4e251c
RNFBAnalytics: 7980ccd88f991d2a21f95ce9ecf2fe78e3be6597
RNFBApp: e09bdbd381e36f6d92b1a96442a652fd71bddb95
RNFBAppCheck: 22fd0372180532e948df3036c870c7c3a6909152
RNFBAppDistribution: ab92cf0d089595e019b7e10f2b0ef2184d79418a
RNFBAuth: 9e65b11d801abaca3e9da310ecd97fc2caa63531
RNFBCrashlytics: 994efc24a0ae86d809961477349b65b316cecf8d
RNFBDatabase: dd0a525e3f9858b823ce7859769566dd08ff54f2
RNFBDynamicLinks: 5961ef6a8778909853da58189ec4d26a8cc04631
RNFBFirestore: 1d29e8dd9d5b0dc8caf9d2045eef5e87b15740fe
RNFBFunctions: 6fbae403e927f7e30cc9cdff11b0f6fdf008a105
RNFBInAppMessaging: 78753d99e4f7a35384197b0dc24ddd9829483354
RNFBInstallations: cf318f7e57480358dec94e36ed1d2b6fc1d059ed
RNFBMessaging: ca28b5e7e9bcb0095589e9388f7c194c468ee622
RNFBML: 161d3172974940d2465b37e92804a6a75eaaff7a
RNFBPerf: 5a68240de8b9f74cca3a28ac4ab66c4e921318c7
RNFBRemoteConfig: 87aa83f8deee029053a416da8c5af5e34e8d298c
RNFBStorage: 565f92376705c8442119e4eef7e7962035e54a17
RNFBAnalytics: 1195e983f182e4ddc9498c08e1e4ad9acd6c59ca
RNFBApp: a61f530d08a0f5996b1fbdcbd1b8bb077d5d61a1
RNFBAppCheck: c7d22a25df1167592ca99ff740fc260b86dff5b6
RNFBAppDistribution: 4730c18a92a6b3c1324cfd68dff1fd192986511a
RNFBAuth: 4ca816efc990ef69e9ca9fed57348a876470b821
RNFBCrashlytics: ab36db027cf802458a0e024a009fbe2def21e3d0
RNFBDatabase: 21df41fb443ecfcb967ab92a2399a04cae931985
RNFBDynamicLinks: db8903a4c376ba91c32725a6707b6ddb54f27938
RNFBFirestore: adb3628074d1c2116e851257d999f0292ddb823a
RNFBFunctions: 44a3ceb8d1bde61e4cb0ec22d570039dc28caed5
RNFBInAppMessaging: 6cbd05c963ac435d4e238a3fb124772f07ce4db9
RNFBInstallations: 10ce8a684976e281e170057e7de449d8bbe2e49c
RNFBMessaging: f7a90ac199e1bc771e9e09058ed0354efd047182
RNFBML: cdc2fd6a068149ebd4b52d72d1446b890cdec376
RNFBPerf: 081cadeae474b564816ff964921fe8d2d5aace61
RNFBRemoteConfig: 45a488597076c00ec1dd47cf0bb88b60d95f1dae
RNFBStorage: c34d21bdfd6f3dd9560edaca5d5c7b6576bcf00d
Yoga: 99caf8d5ab45e9d637ee6e0174ec16fbbb01bcfc

PODFILE CHECKSUM: 32a969fd7f3b6c33961f117a754db51a2771db9a
Expand Down
4 changes: 2 additions & 2 deletions tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"jest-environment-node": "^29.3.1",
"jet": "^0.8.2",
"jsonwebtoken": "^8.5.1",
"metro-react-native-babel-preset": "0.73.3",
"metro-react-native-babel-preset": "0.73.4",
"mocha": "^10.1.0",
"nyc": "^15.0.1",
"patch-package": "^6.4.7",
Expand All @@ -50,7 +50,7 @@
"react-native-port-patcher": "^1.0.5",
"should": "^13.2.3",
"should-sinon": "0.0.6",
"sinon": "^14.0.2"
"sinon": "^15.0.0"
},
"detox": {
"test-runner": "mocha",
Expand Down
Loading

0 comments on commit 19f6ccf

Please sign in to comment.