Skip to content

v2.7.0

Choose a tag to compare

@thobson thobson released this 12 Jun 18:37
· 8 commits to master since this release

Added

New skill to support versioning of workspace packages.

Removed

Changeset package as we now use Codex/Claude

@passlock/browser/safe, @passlock/browser/unsafe, @passlock/server/safe and @passlock/server/unsafe. Every client and function is now safe by default.

Changed

Determine passkey RP ID during registration or authentication initiation/authorization instead of pulling it from the tenancy settings.

The RP ID must now be provided by the caller:

import { Passlock } from "@passlock/server";

const passlock = new Passlock({
  tenancyId,
  apiKey
});

await passlock.authorizePasskeyRegistration({
  rpId: 'example.com',
  ...
});

await passlock.authorizePasskeyAuthentication({
  rpId: 'example.com',
  ...
});