Skip to content

Commit bc2ce87

Browse files
committed
chore: sync pr 886 with main
2 parents 96656a6 + 7679b95 commit bc2ce87

248 files changed

Lines changed: 40937 additions & 8809 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changeset/calm-pumas-smile.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'react-native-app-auth': patch
3+
---
4+
5+
Support Expo 55 AppDelegate declarations without the public class modifier.

.changeset/cuddly-rules-behave.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'react-native-app-auth': patch
3+
---
4+
5+
Remove duplicate iOS auth `state` and `nonce` parameters.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'react-native-app-auth': patch
3+
---
4+
5+
Add missing RCTLinkingManager fallback for non-auth urls in iOS AppDelegate setup docs and example

.changeset/swift-toys-speak.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.eslintignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
Example
1+
Example
2+
docs/docusaurus.config.ts

.github/ISSUE_TEMPLATE/Bug_Report.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@ about: Please provide as much detail as possible to help us with a bug or issue.
55

66
## Issue
77

8-
<!-- Please describe your issue here --^ and provide as much detail as you can. -->
8+
<!-- Please describe your issue here --^ and provide as much detail as you can. If the issue can not be easily replicated, it's unlikely to be quickly resolved! -->
99

1010
---
1111

1212
## Environment
13-
13+
<!-- These details are IMPORTANT to help with replication of the issue -->
1414
* **Your Identity Provider**: `e.g. IdentityServer 4 / Okta / Azure`
1515
* **Platform that you're experiencing the issue on**: `iOS / Android / both`
16+
* **Your `react-native` Version**: `e.g. 0.72.1`
17+
* **Your `react-native-app-auth` Version**: `e.g. 7.0.0`
1618
* **Are you using Expo?**

.github/workflows/main.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.github/workflows/pull-request.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Pull Request
2+
3+
on:
4+
pull_request:
5+
branches: [ main ]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v4
13+
14+
- name: Use Node.js
15+
uses: actions/setup-node@v4
16+
with:
17+
node-version: 20
18+
cache: 'yarn'
19+
20+
- name: Install dependencies
21+
run: yarn install --frozen-lockfile
22+
23+
- name: Build Plugin
24+
run: yarn run build
25+
26+
- name: Lint
27+
run: yarn run lint
28+
29+
- name: Test
30+
run: yarn run test

.github/workflows/release.yml

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@ on:
33
push:
44
branches:
55
- main
6+
67
jobs:
78
release:
8-
name: Release
99
runs-on: ubuntu-latest
10+
environment: Production
1011
permissions:
1112
contents: write
1213
id-token: write
@@ -15,15 +16,27 @@ jobs:
1516
deployments: write
1617
packages: write
1718
pull-requests: write
19+
1820
steps:
19-
- uses: actions/checkout@v2
20-
- uses: actions/setup-node@v3
21+
- uses: actions/checkout@v4
22+
23+
- name: Use Node.js
24+
uses: actions/setup-node@v4
2125
with:
22-
node-version: 18
26+
node-version: 20
27+
cache: 'yarn'
28+
29+
- name: Upgrade npm for OIDC
30+
run: npm i -g npm@^11.5.1
31+
32+
- run: npm config set registry https://registry.npmjs.org
2333

2434
- name: Install dependencies
2535
run: yarn install --frozen-lockfile
2636

37+
- name: Build Plugin
38+
run: yarn run build
39+
2740
- name: Unit Tests
2841
run: yarn test
2942

@@ -35,4 +48,3 @@ jobs:
3548
publish: yarn changeset publish
3649
env:
3750
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,30 @@ android/gradle/
3333
android/gradlew
3434
android/gradlew.bat
3535

36+
# Android/Eclipse
37+
#
38+
android/.settings/
39+
3640
# node.js
3741
#
3842
node_modules/
3943
npm-debug.log
4044
yarn-error.log
4145

46+
# TypeScript
47+
#
48+
*.tsbuildinfo
49+
4250
# BUCK
4351
buck-out/
4452
\.buckd/
4553
*.keystore
4654

4755
Example/yarn.lock
56+
57+
examples/expo-cng/.expo
58+
examples/expo-cng/ios
59+
examples/expo-cng/android
60+
examples/expo-cng/*.tsbuildinfo
61+
62+

0 commit comments

Comments
 (0)