-
Notifications
You must be signed in to change notification settings - Fork 11
Commit fa331cf
authored
chore(deps): update dependency @clerk/types to v4.83.0 (#416)
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
| [@clerk/types](https://clerk.com/)
([source](https://redirect.github.com/clerk/javascript/tree/HEAD/packages/types))
| [`4.73.0` ->
`4.83.0`](https://renovatebot.com/diffs/npm/@clerk%2ftypes/4.73.0/4.83.0)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
---
### Release Notes
<details>
<summary>clerk/javascript (@​clerk/types)</summary>
###
[`v4.83.0`](https://redirect.github.com/clerk/javascript/blob/HEAD/packages/types/CHANGELOG.md#4830)
[Compare
Source](https://redirect.github.com/clerk/javascript/compare/@clerk/[email protected]...@clerk/[email protected])
##### Minor Changes
- Added support for authentication with Base
([#​6556](https://redirect.github.com/clerk/javascript/pull/6556))
by [@​jacekradko](https://redirect.github.com/jacekradko)
###
[`v4.82.0`](https://redirect.github.com/clerk/javascript/blob/HEAD/packages/types/CHANGELOG.md#4820)
[Compare
Source](https://redirect.github.com/clerk/javascript/compare/@clerk/[email protected]...@clerk/[email protected])
##### Minor Changes
- \[Experimental] Signal transfer support
([#​6614](https://redirect.github.com/clerk/javascript/pull/6614))
by [@​dstaley](https://redirect.github.com/dstaley)
- \[Experimental] Signals `isLoaded` removal
([#​6605](https://redirect.github.com/clerk/javascript/pull/6605))
by [@​dstaley](https://redirect.github.com/dstaley)
##### Patch Changes
- Remove unused `__internal_hasAfterAuthFlows` property
([#​6609](https://redirect.github.com/clerk/javascript/pull/6609))
by [@​LauraBeatris](https://redirect.github.com/LauraBeatris)
###
[`v4.81.0`](https://redirect.github.com/clerk/javascript/blob/HEAD/packages/types/CHANGELOG.md#4810)
[Compare
Source](https://redirect.github.com/clerk/javascript/compare/@clerk/[email protected]...@clerk/[email protected])
##### Minor Changes
- \[Billing Beta] Rename `cancelFreeTrialDescription` to
`cancelFreeTrialAccessUntil`.
([#​6582](https://redirect.github.com/clerk/javascript/pull/6582))
by [@​panteliselef](https://redirect.github.com/panteliselef)
- \[Billing Beta] Replace `redirectUrl` with `navigate` in
`checkout.finalize()`
([#​6586](https://redirect.github.com/clerk/javascript/pull/6586))
by [@​panteliselef](https://redirect.github.com/panteliselef)
##### Patch Changes
- Update copies for create organization screen on session tasks
([#​6584](https://redirect.github.com/clerk/javascript/pull/6584))
by [@​iagodahlem](https://redirect.github.com/iagodahlem)
- Fix incorrect redirect when completing session tasks within `SignIn`
and `SignUp` components
([#​6580](https://redirect.github.com/clerk/javascript/pull/6580))
by [@​iagodahlem](https://redirect.github.com/iagodahlem)
###
[`v4.80.0`](https://redirect.github.com/clerk/javascript/blob/HEAD/packages/types/CHANGELOG.md#4800)
[Compare
Source](https://redirect.github.com/clerk/javascript/compare/@clerk/[email protected]...@clerk/[email protected])
##### Minor Changes
- \[Experimental] Signal SignUp APIs
([#​6571](https://redirect.github.com/clerk/javascript/pull/6571))
by [@​dstaley](https://redirect.github.com/dstaley)
- Update SubscriptionDetails to support free trials
([#​6569](https://redirect.github.com/clerk/javascript/pull/6569))
by [@​panteliselef](https://redirect.github.com/panteliselef)
- \[Experimental] Signal implementation for SignUp
([#​6568](https://redirect.github.com/clerk/javascript/pull/6568))
by [@​dstaley](https://redirect.github.com/dstaley)
###
[`v4.79.0`](https://redirect.github.com/clerk/javascript/blob/HEAD/packages/types/CHANGELOG.md#4790)
[Compare
Source](https://redirect.github.com/clerk/javascript/compare/@clerk/[email protected]...@clerk/[email protected])
##### Minor Changes
- \[Experimental] Signal `fetchStatus` support.
([#​6549](https://redirect.github.com/clerk/javascript/pull/6549))
by [@​dstaley](https://redirect.github.com/dstaley)
##### Patch Changes
- Add error handling for `setActive` with stale organization data
([#​6550](https://redirect.github.com/clerk/javascript/pull/6550))
by [@​LauraBeatris](https://redirect.github.com/LauraBeatris)
###
[`v4.78.0`](https://redirect.github.com/clerk/javascript/blob/HEAD/packages/types/CHANGELOG.md#4780)
[Compare
Source](https://redirect.github.com/clerk/javascript/compare/@clerk/[email protected]...@clerk/[email protected])
##### Minor Changes
- \[Experimental] Signals: Add support for calling `signIn.password()`
without an identifier.
([#​6534](https://redirect.github.com/clerk/javascript/pull/6534))
by [@​dstaley](https://redirect.github.com/dstaley)
###
[`v4.77.0`](https://redirect.github.com/clerk/javascript/blob/HEAD/packages/types/CHANGELOG.md#4770)
[Compare
Source](https://redirect.github.com/clerk/javascript/compare/@clerk/[email protected]...@clerk/[email protected])
##### Minor Changes
- Add `navigate` parameter to `clerk.setActive()` for custom navigation
before the session and/or organization is set.
([#​6486](https://redirect.github.com/clerk/javascript/pull/6486))
by [@​LauraBeatris](https://redirect.github.com/LauraBeatris)
It's useful for handling pending session tasks for after-auth flows:
```typescript
await clerk.setActive({
session,
navigate: async ({ session }) => {
const currentTask = session.currentTask;
if (currentTask) {
await router.push(`/onboarding/${currentTask.key}`);
return;
}
await router.push('/dashboard');
},
});
```
##### Patch Changes
- Introduce debugLogger for internal debugging support
([#​6452](https://redirect.github.com/clerk/javascript/pull/6452))
by [@​jacekradko](https://redirect.github.com/jacekradko)
###
[`v4.76.0`](https://redirect.github.com/clerk/javascript/blob/HEAD/packages/types/CHANGELOG.md#4760)
[Compare
Source](https://redirect.github.com/clerk/javascript/compare/@clerk/[email protected]...@clerk/[email protected])
##### Minor Changes
- \[Billing Beta] Replace usage of top level amounts in plan with fees
for displaying prices.
([#​6490](https://redirect.github.com/clerk/javascript/pull/6490))
by [@​panteliselef](https://redirect.github.com/panteliselef)
- Add support for trials in `<Checkout/>`
([#​6494](https://redirect.github.com/clerk/javascript/pull/6494))
by [@​panteliselef](https://redirect.github.com/panteliselef)
- Added `freeTrialEndsAt` property to `CommerceCheckoutResource`
interface.
- Update billing resources with trial properties.
([#​6492](https://redirect.github.com/clerk/javascript/pull/6492))
by [@​panteliselef](https://redirect.github.com/panteliselef)
- Update PricingTable with trial info.
([#​6493](https://redirect.github.com/clerk/javascript/pull/6493))
by [@​panteliselef](https://redirect.github.com/panteliselef)
- \[Experimental] Signals reset password flow
([#​6520](https://redirect.github.com/clerk/javascript/pull/6520))
by [@​dstaley](https://redirect.github.com/dstaley)
##### Patch Changes
- Convert LocalizationResource to interface for typedoc documentation
([#​6531](https://redirect.github.com/clerk/javascript/pull/6531))
by [@​NWylynko](https://redirect.github.com/NWylynko)
- Add optional `isExternal` to `ApplicationLogo`
([#​6447](https://redirect.github.com/clerk/javascript/pull/6447))
by [@​jfoshee](https://redirect.github.com/jfoshee)
Add optional `oAuthApplicationUrl` parameter to OAuth Consent mounting
(which is used to provide a link to the OAuth App homepage).
Harden `Link` component so it sanitizes the given `href` to avoid
dangerous protocols.
###
[`v4.75.0`](https://redirect.github.com/clerk/javascript/blob/HEAD/packages/types/CHANGELOG.md#4750)
[Compare
Source](https://redirect.github.com/clerk/javascript/compare/@clerk/[email protected]...@clerk/[email protected])
##### Minor Changes
- \[Billing Beta] Cleanup naming inconsistencies in billing dates.
([#​6513](https://redirect.github.com/clerk/javascript/pull/6513))
by [@​panteliselef](https://redirect.github.com/panteliselef)
###
[`v4.74.0`](https://redirect.github.com/clerk/javascript/blob/HEAD/packages/types/CHANGELOG.md#4740)
[Compare
Source](https://redirect.github.com/clerk/javascript/compare/@clerk/[email protected]...@clerk/[email protected])
##### Minor Changes
- \[Billing Beta] Update `PlanDetailsProps` to reflect that either
`planId` or `plan` is allowed.
([#​6472](https://redirect.github.com/clerk/javascript/pull/6472))
by [@​panteliselef](https://redirect.github.com/panteliselef)
##### Patch Changes
- Introduce `TaskChooseOrganization` component which replaces
`TaskSelectOrganization` with a new UI that make the experience similar
to the previous `SignIn` and `SignUp` steps
([#​6446](https://redirect.github.com/clerk/javascript/pull/6446))
by [@​LauraBeatris](https://redirect.github.com/LauraBeatris)
- \[Experimental] Signals
([#​6450](https://redirect.github.com/clerk/javascript/pull/6450))
by [@​dstaley](https://redirect.github.com/dstaley)
- Rename task key from `select-organization` to `choose-organization`
([#​6482](https://redirect.github.com/clerk/javascript/pull/6482))
by [@​LauraBeatris](https://redirect.github.com/LauraBeatris)
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/cedarjs/cedar).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi43IiwidXBkYXRlZEluVmVyIjoiNDEuODIuNyIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiY2hhbmdlc2V0cy1vayIsInJlbGVhc2U6ZGVwZW5kZW5jeSJdfQ==-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>1 parent de3614a commit fa331cfCopy full SHA for fa331cf
File tree
Expand file treeCollapse file tree
2 files changed
+3
-12
lines changedOpen diff view settings
Filter options
- packages/auth-providers/clerk/web
Expand file treeCollapse file tree
2 files changed
+3
-12
lines changedOpen diff view settings
Collapse file
packages/auth-providers/clerk/web/package.json
Copy file name to clipboardExpand all lines: packages/auth-providers/clerk/web/package.json+1-1Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
54 | 54 | | |
55 | 55 | | |
56 | 56 | | |
57 | | - | |
| 57 | + | |
58 | 58 | | |
59 | 59 | | |
60 | 60 | | |
| |||
Collapse file
+2-11Lines changed: 2 additions & 11 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2779 | 2779 | | |
2780 | 2780 | | |
2781 | 2781 | | |
2782 | | - | |
| 2782 | + | |
2783 | 2783 | | |
2784 | 2784 | | |
2785 | 2785 | | |
| |||
4333 | 4333 | | |
4334 | 4334 | | |
4335 | 4335 | | |
4336 | | - | |
4337 | | - | |
4338 | | - | |
4339 | | - | |
4340 | | - | |
4341 | | - | |
4342 | | - | |
4343 | | - | |
4344 | | - | |
4345 | | - | |
| 4336 | + | |
4346 | 4337 | | |
4347 | 4338 | | |
4348 | 4339 | | |
| |||
0 commit comments