2c06a5f]:
bedad42]:
bedad42]:
bedad42]:
2c06a5f]:
bedad42]:
2c06a5f]:
bedad42]:
bedad42]:
API keys is now generally available. (#8059) by @wobsoriano
<APIKeys /> componentimport { APIKeys } from '@clerk/react';
export default function Page() {
return <APIKeys />;
}
useAPIKeys() hookimport { useAPIKeys } from '@clerk/react';
export default function CustomAPIKeys() {
const { data, isLoading, page, pageCount, fetchNext, fetchPrevious } = useAPIKeys({
pageSize: 10,
initialPage: 1,
});
if (isLoading) return <div>Loading...</div>;
return (
<ul>
{data?.map(key => (
<li key={key.id}>{key.name}</li>
))}
</ul>
);
}
bedad42]:
bedad42]:
sec-fetch-dest: document incorrectly triggering handshake redirects, resulting in 405 errors from FAPI. Non-GET requests (e.g. native form submissions) are now excluded from handshake and multi-domain sync eligibility. (#8045) by @jacekradkobedad42]:
2c06a5f]:
Add support for seat-based billing plans in Clerk Billing. (#8006) by @dstaley
Add EnterpriseConnection resource (#8175) by @LauraBeatris
User.getEnterpriseConnections() was wrongly typed as returning EnterpriseAccountConnectionResource[], it now returns EnterpriseConnectionResource[]
Allow to link external accounts to enterprise accounts via UserProfile (#8091) by @NicolasLopes7