Skip to content

Commit 366c4e5

Browse files
chore: version packages (alpha)
1 parent f02718f commit 366c4e5

19 files changed

Lines changed: 83 additions & 9 deletions

File tree

.changeset/pre.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"cli-remove-claim-logic",
3434
"cli-scaffold-middleware",
3535
"cli-server-owned-schema-flow",
36+
"cli-spa-frameworks",
3637
"components-atoms-and-orchestrator",
3738
"components-audit-lit-tidy",
3839
"components-declarative-config",
@@ -42,18 +43,22 @@
4243
"consumer-journey-credential-flow",
4344
"customer-local-journey",
4445
"design-tokens-and-ui-react",
46+
"fix-alpha-dist-tag-promotion",
4547
"fix-alpha-goreleaser-dirty-state",
4648
"fix-alpha-prerelease-recovery",
4749
"fix-alpha-publish-gate",
4850
"fix-alpha-release-gate",
4951
"fix-cli-nx-ci",
5052
"fix-release-pnpm-setup",
53+
"fix-start-then-setup-scaffold",
5154
"harden-local-setup-automation",
5255
"local-runtime-fresh-setup",
5356
"lockstep-alpha-train",
57+
"login-figma-polish",
5458
"passkey-end-to-end-flow",
5559
"pr-metadata-guidance",
5660
"quiet-doctor-scaffold",
61+
"recover-alpha-train-manual",
5762
"register-profile-field-labels",
5863
"release-main-ci-wait",
5964
"slow-lines-grin",

apps/cli/CHANGELOG.md

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

3+
## 0.1.0-alpha.5
4+
5+
### Minor Changes
6+
7+
- [#257](https://github.com/zitadel/nextgen/pull/257) [`6f8dd2d`](https://github.com/zitadel/nextgen/commit/6f8dd2d612b06d1ca546a7c16c6fb5c6430de2c1) Thanks [@mridang](https://github.com/mridang)! - Add `setup --framework react|vue|angular|nuxt` support to the CLI. Each framework scaffolds its auth entry/pages and wires `/__nextgen/*` calls to the backend with a `sk_<project_id>` bearer attached: React and Vue get a dev proxy magicast-merged into the Vite config (`vite.config.*`) that reads the project id from `ZITADEL_PROJECT_ID`; Angular gets a `proxy.conf.cjs` wired into `angular.json` that reads it from `zitadel.json`; and Nuxt registers the `@zitadel/sdk-nuxt` module in the Nuxt config (`nuxt.config.*`), which adds the proxy via server middleware. A `--dev-port` flag sets the scaffolded dev-server port.
8+
9+
### Patch Changes
10+
11+
- [#295](https://github.com/zitadel/nextgen/pull/295) [`f02718f`](https://github.com/zitadel/nextgen/commit/f02718f0499042569e13c1c67ae4135b6e943518) Thanks [@fforootd](https://github.com/fforootd)! - Allow fresh app scaffolding after `zitadel start` creates local runtime ignore files, and load Nuxt runtime config through the Nuxt virtual imports module.
12+
13+
- Updated dependencies []:
14+
- @zitadel/api@0.1.0-alpha.5
15+
316
## 0.1.0-alpha.4
417

518
### Patch 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.4",
3+
"version": "0.1.0-alpha.5",
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: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @zitadel/api
22

3+
## 0.1.0-alpha.5
4+
35
## 0.1.0-alpha.4
46

57
## 0.1.0-alpha.3

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.4",
3+
"version": "0.1.0-alpha.5",
44
"description": "Generated TypeScript API client for Zitadel NextGen",
55
"license": "MIT",
66
"type": "module",

packages/components/CHANGELOG.md

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

3+
## 0.1.0-alpha.5
4+
5+
### Patch Changes
6+
7+
- [#286](https://github.com/zitadel/nextgen/pull/286) [`3795b67`](https://github.com/zitadel/nextgen/commit/3795b6793c72b92300fc6a7d21c7562f0a25343e) Thanks [@bastionstack](https://github.com/bastionstack)! - Align the login flow with the latest Figma designs: load `branding.font_url` at document level so branded fonts (including the heading face) actually render, change the sign-in CTA from "Continue" to "Sign in", add the missing `identifier.field.password` label, drop the sign-up subheadline, and rename the passkey registration action to "Continue with a passkey". The default login flow no longer shows the post-registration passkey upsell screen — passkey registration is offered up front instead.
8+
39
## 0.1.0-alpha.4
410

511
### Patch 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.4",
3+
"version": "0.1.0-alpha.5",
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.5
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`3795b67`](https://github.com/zitadel/nextgen/commit/3795b6793c72b92300fc6a7d21c7562f0a25343e)]:
8+
- @zitadel/components@0.1.0-alpha.5
9+
- @zitadel/api@0.1.0-alpha.5
10+
311
## 0.1.0-alpha.4
412

513
### Patch 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.4",
3+
"version": "0.1.0-alpha.5",
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.5
4+
35
## 0.1.0-alpha.4
46

57
## 0.1.0-alpha.3

0 commit comments

Comments
 (0)