diff --git a/CHANGELOG.md b/CHANGELOG.md index 11168cbc..14c04136 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/docs/assets/highlight.css b/docs/assets/highlight.css index 9e59408d..4f181dba 100644 --- a/docs/assets/highlight.css +++ b/docs/assets/highlight.css @@ -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; } @@ -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); } } @@ -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); } } @@ -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); } @@ -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); } @@ -167,6 +173,9 @@ .hl-15 { color: var(--hl-15); } +.hl-16 { + color: var(--hl-16); +} pre, code { background: var(--code-background); diff --git a/docs/classes/TimeoutError.html b/docs/classes/TimeoutError.html index 526de096..5730a14b 100644 --- a/docs/classes/TimeoutError.html +++ b/docs/classes/TimeoutError.html @@ -100,7 +100,7 @@

Hierarchy

  • Defined in utils/fetchWithTimeout.ts:3
  • @@ -239,7 +239,7 @@

  • Defined in utils/fetchWithTimeout.ts:4
  • diff --git a/docs/classes/Types.Auth.html b/docs/classes/Types.Auth.html index 4510afe6..8a7ed1a6 100644 --- a/docs/classes/Types.Auth.html +++ b/docs/classes/Types.Auth.html @@ -107,7 +107,7 @@

    Hierarchy

  • Defined in auth/index.ts:62
  • @@ -349,7 +349,7 @@

    See

  • Defined in auth/index.ts:101
  • @@ -586,7 +586,7 @@

  • Defined in auth/index.ts:564
  • @@ -684,7 +684,7 @@

    See

  • Defined in auth/index.ts:146
  • @@ -783,7 +783,7 @@

    See

  • Defined in auth/index.ts:174
  • @@ -879,7 +879,7 @@

  • Defined in auth/index.ts:294
  • @@ -979,7 +979,7 @@

  • Defined in auth/index.ts:389
  • @@ -1079,7 +1079,7 @@

  • Defined in auth/index.ts:358
  • @@ -1180,7 +1180,7 @@

  • Defined in auth/index.ts:421
  • @@ -1275,7 +1275,7 @@

  • Defined in auth/index.ts:324
  • @@ -1353,7 +1353,7 @@

    See

  • Defined in auth/index.ts:126
  • @@ -1457,7 +1457,7 @@

  • Defined in auth/index.ts:453
  • @@ -1555,7 +1555,7 @@

    See

  • Defined in auth/index.ts:206
  • @@ -1636,7 +1636,7 @@

  • Defined in auth/index.ts:251
  • @@ -1717,7 +1717,7 @@

  • Defined in auth/index.ts:268
  • @@ -1815,7 +1815,7 @@

    See

  • Defined in auth/index.ts:224
  • @@ -1890,7 +1890,7 @@

  • Defined in auth/index.ts:545
  • @@ -1956,7 +1956,7 @@

  • Defined in auth/index.ts:482
  • @@ -2036,7 +2036,7 @@

  • Defined in auth/index.ts:509
  • diff --git a/docs/classes/Types.BaseError.html b/docs/classes/Types.BaseError.html index 46e1b229..46915961 100644 --- a/docs/classes/Types.BaseError.html +++ b/docs/classes/Types.BaseError.html @@ -108,7 +108,7 @@

    Hierarchy

  • Defined in utils/baseError.ts:1
  • @@ -249,7 +249,7 @@

  • Defined in utils/baseError.ts:2
  • diff --git a/docs/classes/Types.CredentialsManager.html b/docs/classes/Types.CredentialsManager.html index eedbe2b3..a0f79e04 100644 --- a/docs/classes/Types.CredentialsManager.html +++ b/docs/classes/Types.CredentialsManager.html @@ -94,7 +94,7 @@

    Hierarchy

  • Defined in credentials-manager/index.ts:8
  • @@ -260,7 +260,7 @@

  • Defined in credentials-manager/index.ts:148
  • @@ -523,7 +523,7 @@

  • Defined in credentials-manager/index.ts:62
  • @@ -609,7 +609,7 @@

  • Defined in credentials-manager/index.ts:136
  • @@ -766,7 +766,7 @@

  • Defined in credentials-manager/index.ts:98
  • @@ -839,7 +839,7 @@

  • Defined in credentials-manager/index.ts:25
  • diff --git a/docs/classes/Types.Users.html b/docs/classes/Types.Users.html index 55dde99d..cbfde39d 100644 --- a/docs/classes/Types.Users.html +++ b/docs/classes/Types.Users.html @@ -106,7 +106,7 @@

    Hierarchy

  • Defined in management/users.ts:38
  • @@ -230,7 +230,7 @@

    Memberof

  • Defined in management/users.ts:66
  • @@ -411,7 +411,7 @@

    Memberof

  • Defined in management/users.ts:89
  • diff --git a/docs/classes/Types.WebAuth.html b/docs/classes/Types.WebAuth.html index 1de90021..e9bc5b10 100644 --- a/docs/classes/Types.WebAuth.html +++ b/docs/classes/Types.WebAuth.html @@ -111,7 +111,7 @@

    Hierarchy

  • Defined in webauth/index.ts:21
  • @@ -253,7 +253,7 @@

    See

  • Defined in webauth/index.ts:48
  • @@ -536,7 +536,7 @@

    See

  • Defined in webauth/index.ts:64
  • diff --git a/docs/classes/default.html b/docs/classes/default.html index 85cb3518..1c15c716 100644 --- a/docs/classes/default.html +++ b/docs/classes/default.html @@ -97,7 +97,7 @@

    Hierarchy

  • Defined in auth0.ts:10
  • @@ -409,7 +409,7 @@

  • Defined in auth0.ts:25
  • @@ -443,7 +443,7 @@

  • Defined in auth0.ts:14
  • @@ -607,7 +607,7 @@

  • Defined in auth0.ts:44
  • diff --git a/docs/enums/LocalAuthenticationStrategy.html b/docs/enums/LocalAuthenticationStrategy.html index a002d58f..864a5966 100644 --- a/docs/enums/LocalAuthenticationStrategy.html +++ b/docs/enums/LocalAuthenticationStrategy.html @@ -99,7 +99,7 @@

    Enumeration LocalAuthenticationStrategy

  • Defined in credentials-manager/localAuthenticationStrategy.ts:4
  • @@ -211,7 +211,7 @@

    Example

    -
    <Auth0Provider domain="YOUR AUTH0 DOMAIN" clientId="YOUR CLIENT ID">
    <App />
    </Auth0Provider> +
    <Auth0Provider domain="YOUR AUTH0 DOMAIN" clientId="YOUR CLIENT ID">
    <App />
    </Auth0Provider>