Skip to content

Commit 982850e

Browse files
authored
Release v3.0.1 (auth0#706)
1 parent bcfdb1c commit 982850e

Some content is hidden

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

50 files changed

+347
-271
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Change Log
22

3+
## [v3.0.1](https://github.com/auth0/react-native-auth0/tree/v3.0.1) (2023-08-16)
4+
5+
[Full Changelog](https://github.com/auth0/react-native-auth0/compare/v3.0.0...v3.0.1)
6+
7+
**Fixed**
8+
9+
- Make `authorize` and `clearSession` parameters optional [\#701](https://github.com/auth0/react-native-auth0/pull/701) ([poovamraj](https://github.com/poovamraj))
10+
11+
**Security**
12+
13+
- chore(deps): bump semver from 5.7.1 to 5.7.2 in /example [\#692](https://github.com/auth0/react-native-auth0/pull/692) ([dependabot[bot]](https://github.com/apps/dependabot))
14+
- chore(deps): bump fast-xml-parser from 4.2.4 to 4.2.7 in /example [\#693](https://github.com/auth0/react-native-auth0/pull/693) ([dependabot[bot]](https://github.com/apps/dependabot))
15+
316
## [v3.0.0](https://github.com/auth0/react-native-auth0/tree/v3.0.0) (2023-08-10)
417

518
[Full Changelog](https://github.com/auth0/react-native-auth0/compare/v2.17.4...v3.0.0)

docs/assets/highlight.css

Lines changed: 39 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,38 @@
11
:root {
22
--light-hl-0: #000000;
3-
--dark-hl-0: #d4d4d4;
4-
--light-hl-1: #008000;
5-
--dark-hl-1: #6a9955;
6-
--light-hl-2: #a31515;
7-
--dark-hl-2: #ce9178;
8-
--light-hl-3: #0000ff;
9-
--dark-hl-3: #569cd6;
10-
--light-hl-4: #000000ff;
11-
--dark-hl-4: #d4d4d4;
12-
--light-hl-5: #800000;
13-
--dark-hl-5: #808080;
14-
--light-hl-6: #800000;
15-
--dark-hl-6: #569cd6;
16-
--light-hl-7: #e50000;
17-
--dark-hl-7: #9cdcfe;
18-
--light-hl-8: #0000ff;
19-
--dark-hl-8: #ce9178;
20-
--light-hl-9: #af00db;
21-
--dark-hl-9: #c586c0;
22-
--light-hl-10: #267f99;
23-
--dark-hl-10: #4ec9b0;
24-
--light-hl-11: #795e26;
25-
--dark-hl-11: #dcdcaa;
26-
--light-hl-12: #0451a5;
27-
--dark-hl-12: #9cdcfe;
28-
--light-hl-13: #cd3131;
29-
--dark-hl-13: #f44747;
30-
--light-hl-14: #001080;
3+
--dark-hl-0: #c8c8c8;
4+
--light-hl-1: #000000;
5+
--dark-hl-1: #d4d4d4;
6+
--light-hl-2: #001080;
7+
--dark-hl-2: #9cdcfe;
8+
--light-hl-3: #a31515;
9+
--dark-hl-3: #ce9178;
10+
--light-hl-4: #008000;
11+
--dark-hl-4: #6a9955;
12+
--light-hl-5: #0000ff;
13+
--dark-hl-5: #569cd6;
14+
--light-hl-6: #000000ff;
15+
--dark-hl-6: #d4d4d4;
16+
--light-hl-7: #800000;
17+
--dark-hl-7: #808080;
18+
--light-hl-8: #800000;
19+
--dark-hl-8: #569cd6;
20+
--light-hl-9: #e50000;
21+
--dark-hl-9: #9cdcfe;
22+
--light-hl-10: #0000ff;
23+
--dark-hl-10: #ce9178;
24+
--light-hl-11: #af00db;
25+
--dark-hl-11: #c586c0;
26+
--light-hl-12: #267f99;
27+
--dark-hl-12: #4ec9b0;
28+
--light-hl-13: #795e26;
29+
--dark-hl-13: #dcdcaa;
30+
--light-hl-14: #0451a5;
3131
--dark-hl-14: #9cdcfe;
32-
--light-hl-15: #0070c1;
33-
--dark-hl-15: #4fc1ff;
32+
--light-hl-15: #cd3131;
33+
--dark-hl-15: #f44747;
34+
--light-hl-16: #0070c1;
35+
--dark-hl-16: #4fc1ff;
3436
--light-code-background: #ffffff;
3537
--dark-code-background: #1e1e1e;
3638
}
@@ -53,6 +55,7 @@
5355
--hl-13: var(--light-hl-13);
5456
--hl-14: var(--light-hl-14);
5557
--hl-15: var(--light-hl-15);
58+
--hl-16: var(--light-hl-16);
5659
--code-background: var(--light-code-background);
5760
}
5861
}
@@ -75,6 +78,7 @@
7578
--hl-13: var(--dark-hl-13);
7679
--hl-14: var(--dark-hl-14);
7780
--hl-15: var(--dark-hl-15);
81+
--hl-16: var(--dark-hl-16);
7882
--code-background: var(--dark-code-background);
7983
}
8084
}
@@ -96,6 +100,7 @@
96100
--hl-13: var(--light-hl-13);
97101
--hl-14: var(--light-hl-14);
98102
--hl-15: var(--light-hl-15);
103+
--hl-16: var(--light-hl-16);
99104
--code-background: var(--light-code-background);
100105
}
101106

@@ -116,6 +121,7 @@
116121
--hl-13: var(--dark-hl-13);
117122
--hl-14: var(--dark-hl-14);
118123
--hl-15: var(--dark-hl-15);
124+
--hl-16: var(--dark-hl-16);
119125
--code-background: var(--dark-code-background);
120126
}
121127

@@ -167,6 +173,9 @@
167173
.hl-15 {
168174
color: var(--hl-15);
169175
}
176+
.hl-16 {
177+
color: var(--hl-16);
178+
}
170179
pre,
171180
code {
172181
background: var(--code-background);

docs/classes/TimeoutError.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ <h4>Hierarchy</h4>
100100
<li>
101101
Defined in
102102
<a
103-
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/utils/fetchWithTimeout.ts#L3"
103+
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/utils/fetchWithTimeout.ts#L3"
104104
>utils/fetchWithTimeout.ts:3</a
105105
>
106106
</li>
@@ -239,7 +239,7 @@ <h4 class="tsd-returns-title">
239239
<li>
240240
Defined in
241241
<a
242-
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/utils/fetchWithTimeout.ts#L4"
242+
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/utils/fetchWithTimeout.ts#L4"
243243
>utils/fetchWithTimeout.ts:4</a
244244
>
245245
</li>

docs/classes/Types.Auth.html

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ <h4>Hierarchy</h4>
107107
<li>
108108
Defined in
109109
<a
110-
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L62"
110+
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L62"
111111
>auth/index.ts:62</a
112112
>
113113
</li>
@@ -349,7 +349,7 @@ <h3 class="tsd-anchor-link">
349349
<li>
350350
Defined in
351351
<a
352-
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L63"
352+
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L63"
353353
>auth/index.ts:63</a
354354
>
355355
</li>
@@ -382,7 +382,7 @@ <h3 class="tsd-anchor-link">
382382
<li>
383383
Defined in
384384
<a
385-
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L67"
385+
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L67"
386386
>auth/index.ts:67</a
387387
>
388388
</li>
@@ -412,7 +412,7 @@ <h3 class="tsd-anchor-link">
412412
<li>
413413
Defined in
414414
<a
415-
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L71"
415+
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L71"
416416
>auth/index.ts:71</a
417417
>
418418
</li>
@@ -495,7 +495,7 @@ <h4>See</h4>
495495
<li>
496496
Defined in
497497
<a
498-
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L101"
498+
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L101"
499499
>auth/index.ts:101</a
500500
>
501501
</li>
@@ -586,7 +586,7 @@ <h4 class="tsd-returns-title">
586586
<li>
587587
Defined in
588588
<a
589-
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L564"
589+
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L564"
590590
>auth/index.ts:564</a
591591
>
592592
</li>
@@ -684,7 +684,7 @@ <h4>See</h4>
684684
<li>
685685
Defined in
686686
<a
687-
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L146"
687+
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L146"
688688
>auth/index.ts:146</a
689689
>
690690
</li>
@@ -783,7 +783,7 @@ <h4>See</h4>
783783
<li>
784784
Defined in
785785
<a
786-
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L174"
786+
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L174"
787787
>auth/index.ts:174</a
788788
>
789789
</li>
@@ -879,7 +879,7 @@ <h4 class="tsd-returns-title">
879879
<li>
880880
Defined in
881881
<a
882-
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L294"
882+
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L294"
883883
>auth/index.ts:294</a
884884
>
885885
</li>
@@ -979,7 +979,7 @@ <h4 class="tsd-returns-title">
979979
<li>
980980
Defined in
981981
<a
982-
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L389"
982+
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L389"
983983
>auth/index.ts:389</a
984984
>
985985
</li>
@@ -1079,7 +1079,7 @@ <h4 class="tsd-returns-title">
10791079
<li>
10801080
Defined in
10811081
<a
1082-
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L358"
1082+
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L358"
10831083
>auth/index.ts:358</a
10841084
>
10851085
</li>
@@ -1180,7 +1180,7 @@ <h4 class="tsd-returns-title">
11801180
<li>
11811181
Defined in
11821182
<a
1183-
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L421"
1183+
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L421"
11841184
>auth/index.ts:421</a
11851185
>
11861186
</li>
@@ -1275,7 +1275,7 @@ <h4 class="tsd-returns-title">
12751275
<li>
12761276
Defined in
12771277
<a
1278-
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L324"
1278+
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L324"
12791279
>auth/index.ts:324</a
12801280
>
12811281
</li>
@@ -1353,7 +1353,7 @@ <h4>See</h4>
13531353
<li>
13541354
Defined in
13551355
<a
1356-
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L126"
1356+
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L126"
13571357
>auth/index.ts:126</a
13581358
>
13591359
</li>
@@ -1457,7 +1457,7 @@ <h4 class="tsd-returns-title">
14571457
<li>
14581458
Defined in
14591459
<a
1460-
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L453"
1460+
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L453"
14611461
>auth/index.ts:453</a
14621462
>
14631463
</li>
@@ -1555,7 +1555,7 @@ <h4>See</h4>
15551555
<li>
15561556
Defined in
15571557
<a
1558-
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L206"
1558+
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L206"
15591559
>auth/index.ts:206</a
15601560
>
15611561
</li>
@@ -1636,7 +1636,7 @@ <h4 class="tsd-returns-title">
16361636
<li>
16371637
Defined in
16381638
<a
1639-
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L251"
1639+
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L251"
16401640
>auth/index.ts:251</a
16411641
>
16421642
</li>
@@ -1717,7 +1717,7 @@ <h4 class="tsd-returns-title">
17171717
<li>
17181718
Defined in
17191719
<a
1720-
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L268"
1720+
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L268"
17211721
>auth/index.ts:268</a
17221722
>
17231723
</li>
@@ -1815,7 +1815,7 @@ <h4>See</h4>
18151815
<li>
18161816
Defined in
18171817
<a
1818-
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L224"
1818+
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L224"
18191819
>auth/index.ts:224</a
18201820
>
18211821
</li>
@@ -1890,7 +1890,7 @@ <h4 class="tsd-returns-title">
18901890
<li>
18911891
Defined in
18921892
<a
1893-
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L545"
1893+
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L545"
18941894
>auth/index.ts:545</a
18951895
>
18961896
</li>
@@ -1956,7 +1956,7 @@ <h4 class="tsd-returns-title">
19561956
<li>
19571957
Defined in
19581958
<a
1959-
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L482"
1959+
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L482"
19601960
>auth/index.ts:482</a
19611961
>
19621962
</li>
@@ -2036,7 +2036,7 @@ <h4 class="tsd-returns-title">
20362036
<li>
20372037
Defined in
20382038
<a
2039-
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L509"
2039+
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L509"
20402040
>auth/index.ts:509</a
20412041
>
20422042
</li>

docs/classes/Types.BaseError.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ <h4>Hierarchy</h4>
108108
<li>
109109
Defined in
110110
<a
111-
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/utils/baseError.ts#L1"
111+
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/utils/baseError.ts#L1"
112112
>utils/baseError.ts:1</a
113113
>
114114
</li>
@@ -249,7 +249,7 @@ <h4 class="tsd-returns-title">
249249
<li>
250250
Defined in
251251
<a
252-
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/utils/baseError.ts#L2"
252+
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/utils/baseError.ts#L2"
253253
>utils/baseError.ts:2</a
254254
>
255255
</li>

0 commit comments

Comments
 (0)