Skip to content

Commit

Permalink
Release v3.0.1 (#706)
Browse files Browse the repository at this point in the history
  • Loading branch information
poovamraj authored Aug 16, 2023
1 parent bcfdb1c commit 982850e
Show file tree
Hide file tree
Showing 50 changed files with 347 additions and 271 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Change Log

## [v3.0.1](https://github.com/auth0/react-native-auth0/tree/v3.0.1) (2023-08-16)

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

**Fixed**

- Make `authorize` and `clearSession` parameters optional [\#701](https://github.com/auth0/react-native-auth0/pull/701) ([poovamraj](https://github.com/poovamraj))

**Security**

- 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))
- 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))

## [v3.0.0](https://github.com/auth0/react-native-auth0/tree/v3.0.0) (2023-08-10)

[Full Changelog](https://github.com/auth0/react-native-auth0/compare/v2.17.4...v3.0.0)
Expand Down
69 changes: 39 additions & 30 deletions docs/assets/highlight.css
Original file line number Diff line number Diff line change
@@ -1,36 +1,38 @@
:root {
--light-hl-0: #000000;
--dark-hl-0: #d4d4d4;
--light-hl-1: #008000;
--dark-hl-1: #6a9955;
--light-hl-2: #a31515;
--dark-hl-2: #ce9178;
--light-hl-3: #0000ff;
--dark-hl-3: #569cd6;
--light-hl-4: #000000ff;
--dark-hl-4: #d4d4d4;
--light-hl-5: #800000;
--dark-hl-5: #808080;
--light-hl-6: #800000;
--dark-hl-6: #569cd6;
--light-hl-7: #e50000;
--dark-hl-7: #9cdcfe;
--light-hl-8: #0000ff;
--dark-hl-8: #ce9178;
--light-hl-9: #af00db;
--dark-hl-9: #c586c0;
--light-hl-10: #267f99;
--dark-hl-10: #4ec9b0;
--light-hl-11: #795e26;
--dark-hl-11: #dcdcaa;
--light-hl-12: #0451a5;
--dark-hl-12: #9cdcfe;
--light-hl-13: #cd3131;
--dark-hl-13: #f44747;
--light-hl-14: #001080;
--dark-hl-0: #c8c8c8;
--light-hl-1: #000000;
--dark-hl-1: #d4d4d4;
--light-hl-2: #001080;
--dark-hl-2: #9cdcfe;
--light-hl-3: #a31515;
--dark-hl-3: #ce9178;
--light-hl-4: #008000;
--dark-hl-4: #6a9955;
--light-hl-5: #0000ff;
--dark-hl-5: #569cd6;
--light-hl-6: #000000ff;
--dark-hl-6: #d4d4d4;
--light-hl-7: #800000;
--dark-hl-7: #808080;
--light-hl-8: #800000;
--dark-hl-8: #569cd6;
--light-hl-9: #e50000;
--dark-hl-9: #9cdcfe;
--light-hl-10: #0000ff;
--dark-hl-10: #ce9178;
--light-hl-11: #af00db;
--dark-hl-11: #c586c0;
--light-hl-12: #267f99;
--dark-hl-12: #4ec9b0;
--light-hl-13: #795e26;
--dark-hl-13: #dcdcaa;
--light-hl-14: #0451a5;
--dark-hl-14: #9cdcfe;
--light-hl-15: #0070c1;
--dark-hl-15: #4fc1ff;
--light-hl-15: #cd3131;
--dark-hl-15: #f44747;
--light-hl-16: #0070c1;
--dark-hl-16: #4fc1ff;
--light-code-background: #ffffff;
--dark-code-background: #1e1e1e;
}
Expand All @@ -53,6 +55,7 @@
--hl-13: var(--light-hl-13);
--hl-14: var(--light-hl-14);
--hl-15: var(--light-hl-15);
--hl-16: var(--light-hl-16);
--code-background: var(--light-code-background);
}
}
Expand All @@ -75,6 +78,7 @@
--hl-13: var(--dark-hl-13);
--hl-14: var(--dark-hl-14);
--hl-15: var(--dark-hl-15);
--hl-16: var(--dark-hl-16);
--code-background: var(--dark-code-background);
}
}
Expand All @@ -96,6 +100,7 @@
--hl-13: var(--light-hl-13);
--hl-14: var(--light-hl-14);
--hl-15: var(--light-hl-15);
--hl-16: var(--light-hl-16);
--code-background: var(--light-code-background);
}

Expand All @@ -116,6 +121,7 @@
--hl-13: var(--dark-hl-13);
--hl-14: var(--dark-hl-14);
--hl-15: var(--dark-hl-15);
--hl-16: var(--dark-hl-16);
--code-background: var(--dark-code-background);
}

Expand Down Expand Up @@ -167,6 +173,9 @@
.hl-15 {
color: var(--hl-15);
}
.hl-16 {
color: var(--hl-16);
}
pre,
code {
background: var(--code-background);
Expand Down
4 changes: 2 additions & 2 deletions docs/classes/TimeoutError.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ <h4>Hierarchy</h4>
<li>
Defined in
<a
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/utils/fetchWithTimeout.ts#L3"
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/utils/fetchWithTimeout.ts#L3"
>utils/fetchWithTimeout.ts:3</a
>
</li>
Expand Down Expand Up @@ -239,7 +239,7 @@ <h4 class="tsd-returns-title">
<li>
Defined in
<a
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/utils/fetchWithTimeout.ts#L4"
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/utils/fetchWithTimeout.ts#L4"
>utils/fetchWithTimeout.ts:4</a
>
</li>
Expand Down
44 changes: 22 additions & 22 deletions docs/classes/Types.Auth.html
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ <h4>Hierarchy</h4>
<li>
Defined in
<a
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L62"
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L62"
>auth/index.ts:62</a
>
</li>
Expand Down Expand Up @@ -349,7 +349,7 @@ <h3 class="tsd-anchor-link">
<li>
Defined in
<a
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L63"
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L63"
>auth/index.ts:63</a
>
</li>
Expand Down Expand Up @@ -382,7 +382,7 @@ <h3 class="tsd-anchor-link">
<li>
Defined in
<a
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L67"
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L67"
>auth/index.ts:67</a
>
</li>
Expand Down Expand Up @@ -412,7 +412,7 @@ <h3 class="tsd-anchor-link">
<li>
Defined in
<a
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L71"
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L71"
>auth/index.ts:71</a
>
</li>
Expand Down Expand Up @@ -495,7 +495,7 @@ <h4>See</h4>
<li>
Defined in
<a
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L101"
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L101"
>auth/index.ts:101</a
>
</li>
Expand Down Expand Up @@ -586,7 +586,7 @@ <h4 class="tsd-returns-title">
<li>
Defined in
<a
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L564"
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L564"
>auth/index.ts:564</a
>
</li>
Expand Down Expand Up @@ -684,7 +684,7 @@ <h4>See</h4>
<li>
Defined in
<a
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L146"
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L146"
>auth/index.ts:146</a
>
</li>
Expand Down Expand Up @@ -783,7 +783,7 @@ <h4>See</h4>
<li>
Defined in
<a
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L174"
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L174"
>auth/index.ts:174</a
>
</li>
Expand Down Expand Up @@ -879,7 +879,7 @@ <h4 class="tsd-returns-title">
<li>
Defined in
<a
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L294"
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L294"
>auth/index.ts:294</a
>
</li>
Expand Down Expand Up @@ -979,7 +979,7 @@ <h4 class="tsd-returns-title">
<li>
Defined in
<a
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L389"
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L389"
>auth/index.ts:389</a
>
</li>
Expand Down Expand Up @@ -1079,7 +1079,7 @@ <h4 class="tsd-returns-title">
<li>
Defined in
<a
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L358"
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L358"
>auth/index.ts:358</a
>
</li>
Expand Down Expand Up @@ -1180,7 +1180,7 @@ <h4 class="tsd-returns-title">
<li>
Defined in
<a
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L421"
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L421"
>auth/index.ts:421</a
>
</li>
Expand Down Expand Up @@ -1275,7 +1275,7 @@ <h4 class="tsd-returns-title">
<li>
Defined in
<a
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L324"
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L324"
>auth/index.ts:324</a
>
</li>
Expand Down Expand Up @@ -1353,7 +1353,7 @@ <h4>See</h4>
<li>
Defined in
<a
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L126"
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L126"
>auth/index.ts:126</a
>
</li>
Expand Down Expand Up @@ -1457,7 +1457,7 @@ <h4 class="tsd-returns-title">
<li>
Defined in
<a
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L453"
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L453"
>auth/index.ts:453</a
>
</li>
Expand Down Expand Up @@ -1555,7 +1555,7 @@ <h4>See</h4>
<li>
Defined in
<a
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L206"
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L206"
>auth/index.ts:206</a
>
</li>
Expand Down Expand Up @@ -1636,7 +1636,7 @@ <h4 class="tsd-returns-title">
<li>
Defined in
<a
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L251"
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L251"
>auth/index.ts:251</a
>
</li>
Expand Down Expand Up @@ -1717,7 +1717,7 @@ <h4 class="tsd-returns-title">
<li>
Defined in
<a
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L268"
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L268"
>auth/index.ts:268</a
>
</li>
Expand Down Expand Up @@ -1815,7 +1815,7 @@ <h4>See</h4>
<li>
Defined in
<a
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L224"
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L224"
>auth/index.ts:224</a
>
</li>
Expand Down Expand Up @@ -1890,7 +1890,7 @@ <h4 class="tsd-returns-title">
<li>
Defined in
<a
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L545"
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L545"
>auth/index.ts:545</a
>
</li>
Expand Down Expand Up @@ -1956,7 +1956,7 @@ <h4 class="tsd-returns-title">
<li>
Defined in
<a
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L482"
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L482"
>auth/index.ts:482</a
>
</li>
Expand Down Expand Up @@ -2036,7 +2036,7 @@ <h4 class="tsd-returns-title">
<li>
Defined in
<a
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/auth/index.ts#L509"
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/auth/index.ts#L509"
>auth/index.ts:509</a
>
</li>
Expand Down
4 changes: 2 additions & 2 deletions docs/classes/Types.BaseError.html
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ <h4>Hierarchy</h4>
<li>
Defined in
<a
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/utils/baseError.ts#L1"
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/utils/baseError.ts#L1"
>utils/baseError.ts:1</a
>
</li>
Expand Down Expand Up @@ -249,7 +249,7 @@ <h4 class="tsd-returns-title">
<li>
Defined in
<a
href="https://github.com/auth0/react-native-auth0/blob/9b9ed243/src/utils/baseError.ts#L2"
href="https://github.com/auth0/react-native-auth0/blob/bcfdb1cc/src/utils/baseError.ts#L2"
>utils/baseError.ts:2</a
>
</li>
Expand Down
Loading

0 comments on commit 982850e

Please sign in to comment.