Skip to content

Commit b336963

Browse files
authored
Merge branch 'main' into codex/use-depotubuntu24048-runner
2 parents 2836daf + 17edaf8 commit b336963

19 files changed

Lines changed: 96 additions & 9 deletions

File tree

.changeset/pre.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,25 @@
2828
"changesets": [
2929
"add-spa-sdks",
3030
"align-alpha-sdk-dependency",
31+
"api-config-global-slot",
3132
"cli-drop-unused-flows",
3233
"cli-remove-claim-logic",
3334
"cli-scaffold-middleware",
3435
"cli-server-owned-schema-flow",
3536
"components-atoms-and-orchestrator",
37+
"components-audit-lit-tidy",
38+
"components-declarative-config",
3639
"components-orval-wireup",
3740
"components-replace-ui-lit-placeholders",
41+
"components-standalone-bundle",
3842
"consumer-journey-credential-flow",
3943
"design-tokens-and-ui-react",
4044
"fix-cli-nx-ci",
4145
"fix-release-pnpm-setup",
46+
"lockstep-alpha-train",
4247
"passkey-end-to-end-flow",
48+
"quiet-doctor-scaffold",
49+
"register-profile-field-labels",
4350
"slow-lines-grin",
4451
"smooth-playwright-journey",
4552
"soft-local-dev",

apps/cli/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @zitadel/cli
22

3+
## 0.1.0-alpha.2
4+
5+
### Patch Changes
6+
7+
- [#265](https://github.com/zitadel/nextgen/pull/265) [`ceb74d5`](https://github.com/zitadel/nextgen/commit/ceb74d54c98fff07deb90c800a5aa08b2f46e30e) Thanks [@fforootd](https://github.com/fforootd)! - Derive alpha local runtime images from the installed CLI version, pin generated SDK dependencies to the same alpha train, and emit exact-version follow-up commands for reproducible tester reports.
8+
9+
- [#255](https://github.com/zitadel/nextgen/pull/255) [`ca53f61`](https://github.com/zitadel/nextgen/commit/ca53f61ae249f81fd301f71f33cd9be416271ad7) Thanks [@fforootd](https://github.com/fforootd)! - Make doctor local-runtime checks advisory for cloud setup, harden fresh Next.js scaffolding, auto-install setup dependencies, normalize public follow-up commands, and avoid assuming Next.js in local-runtime setup guidance.
10+
11+
- Updated dependencies [[`b0094f4`](https://github.com/zitadel/nextgen/commit/b0094f4255854c571664e746f70447c365c52af2)]:
12+
- @zitadel/api@0.1.0-alpha.2
13+
314
## 0.1.0-alpha.1
415

516
### Minor Changes

apps/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zitadel/cli",
3-
"version": "0.1.0-alpha.1",
3+
"version": "0.1.0-alpha.2",
44
"description": "Agent-friendly Zitadel CLI",
55
"homepage": "https://github.com/zitadel/nextgen/tree/main/apps/cli#readme",
66
"bugs": {

packages/api/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @zitadel/api
22

3+
## 0.1.0-alpha.2
4+
5+
### Patch Changes
6+
7+
- [#268](https://github.com/zitadel/nextgen/pull/268) [`b0094f4`](https://github.com/zitadel/nextgen/commit/b0094f4255854c571664e746f70447c365c52af2) Thanks [@mridang](https://github.com/mridang)! - Fix `configureZitadel()` so its state survives when more than one copy of `@zitadel/api/config` ends up loaded — the standalone components bundle inlines its own copy, and dual-package hazards / duplicate `node_modules` trees in a monorepo can load a second copy alongside the app's. Previously each module instance held its own `let currentProject`, so a `configureZitadel()` call in one was invisible to `getZitadelConfig()` in another and the components silently saw no config. The slot now lives on `globalThis` under a `Symbol.for(...)` key, which the global symbol registry resolves to the same symbol identity in every copy of the module evaluated in the same JS realm — separate realms (iframes, Node `vm` contexts, worker threads) still have their own registries.
8+
39
## 0.1.0-alpha.0
410

511
### Minor Changes

packages/api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zitadel/api",
3-
"version": "0.1.0-alpha.1",
3+
"version": "0.1.0-alpha.2",
44
"description": "Generated TypeScript API client for Zitadel NextGen",
55
"license": "MIT",
66
"type": "module",

packages/components/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# @zitadel/components
22

3+
## 0.1.0-alpha.2
4+
5+
### Minor Changes
6+
7+
- [#266](https://github.com/zitadel/nextgen/pull/266) [`01aed1e`](https://github.com/zitadel/nextgen/commit/01aed1e0de4ffd1ec6d78f8fa73f0ce19b907aa0) Thanks [@mridang](https://github.com/mridang)! - Allow configuring `<zitadel-login>` and `<zitadel-logout>` declaratively from HTML via `project-id`, `proxy-path`, and `url` attributes, so the components work on a plain page without JS or `configureZitadel()`. Configuration resolves in this order, highest first: the `project` property, then the `configureZitadel()` global, then the HTML attributes. The existing JS paths still win — the attributes are the no-JS fallback.
8+
9+
Also fix the standalone bundle so it loads in a browser: it was built for Node and emitted an `import "node:module"` that browsers cannot resolve. It is now built for the browser, so `dist/standalone.mjs` is genuinely self-contained.
10+
11+
- [#261](https://github.com/zitadel/nextgen/pull/261) [`09aa2b1`](https://github.com/zitadel/nextgen/commit/09aa2b13da9dd0e15453f46f4d62fb2863835a0c) Thanks [@mridang](https://github.com/mridang)! - Add a standalone browser bundle (`dist/standalone.mjs`) so the components work on a plain HTML page via `<script type="module">` with no import map or bundler. Exposed via the `./standalone` export and `unpkg`/`jsdelivr`.
12+
13+
### Patch Changes
14+
15+
- [#231](https://github.com/zitadel/nextgen/pull/231) [`ce89c59`](https://github.com/zitadel/nextgen/commit/ce89c5941b4ae90849fac720ecc4a2a0c49c245d) Thanks [@bastionstack](https://github.com/bastionstack)! - Tidy the web components package: align README/AGENTS docs with the real SDK-config API, adopt idiomatic Lit patterns (`classMap`, `live()`, `ifDefined`, `@query`, a shared `emit()` helper), make post-step focus deterministic via `updateComplete` instead of `requestAnimationFrame`, centralise SDK/API resolution in a `resolveApi()` helper, correct the manifest registry (e.g. `zl-passkey` `method` attribute), and expand unit/browser test coverage.
16+
17+
- [#253](https://github.com/zitadel/nextgen/pull/253) [`c097a5f`](https://github.com/zitadel/nextgen/commit/c097a5f0b720e58920c692ec909960e9c44696e3) Thanks [@vitorbari](https://github.com/vitorbari)! - Add English labels for the `givenName`, `familyName`, and `dateOfBirth`
18+
fields the default register step now collects.
19+
320
## 0.1.0-alpha.0
421

522
### Minor Changes

packages/components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zitadel/components",
3-
"version": "0.1.0-alpha.1",
3+
"version": "0.1.0-alpha.2",
44
"description": "Lit-based atomic web components and the <zitadel-login> orchestrator for the Zitadel auth UI.",
55
"homepage": "https://github.com/zitadel/nextgen/tree/main/packages/components#readme",
66
"bugs": {

packages/sdk-angular/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @zitadel/sdk-angular
22

3+
## 0.1.0-alpha.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`b0094f4`](https://github.com/zitadel/nextgen/commit/b0094f4255854c571664e746f70447c365c52af2), [`ce89c59`](https://github.com/zitadel/nextgen/commit/ce89c5941b4ae90849fac720ecc4a2a0c49c245d), [`01aed1e`](https://github.com/zitadel/nextgen/commit/01aed1e0de4ffd1ec6d78f8fa73f0ce19b907aa0), [`09aa2b1`](https://github.com/zitadel/nextgen/commit/09aa2b13da9dd0e15453f46f4d62fb2863835a0c), [`c097a5f`](https://github.com/zitadel/nextgen/commit/c097a5f0b720e58920c692ec909960e9c44696e3)]:
8+
- @zitadel/api@0.1.0-alpha.2
9+
- @zitadel/components@0.1.0-alpha.2
10+
311
## 0.1.0-alpha.0
412

513
### Minor Changes

packages/sdk-angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zitadel/sdk-angular",
3-
"version": "0.1.0-alpha.1",
3+
"version": "0.1.0-alpha.2",
44
"description": "Angular components for the Zitadel auth UI (client-side SPA).",
55
"homepage": "https://github.com/zitadel/nextgen/tree/main/packages/sdk-angular#readme",
66
"bugs": {

packages/sdk-core/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @zitadel/sdk-core
22

3+
## 0.1.0-alpha.2
4+
35
## 0.1.0-alpha.0
46

57
### Minor Changes

0 commit comments

Comments
 (0)