arqzero 2.1.0-beta.12 → 2.1.0-beta.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/dist/arqzero.mjs +225 -197
- package/package.json +5 -3
- package/scripts/postinstall.mjs +67 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.1.0-beta.13] — 2026-05-23
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- First-run configure flow no longer crashes with "Fatal error" and a stack
|
|
14
|
+
trace when the user picks the managed `arqzero` provider before running
|
|
15
|
+
`arqzero login`. New `NotSignedInError` is caught by `bin/arq.ts`, which
|
|
16
|
+
exits 0 with a friendly, branded message pointing at the next command.
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- Configure flow restyled with the brand teal palette: branded banner at the
|
|
20
|
+
top, divider, numbered options with the recommended provider marked, soft
|
|
21
|
+
muted descriptions, teal prompt cursor `❯`. Respects `NO_COLOR`.
|
|
22
|
+
- Default provider in the picker is now `arqzero` (option 1) — was
|
|
23
|
+
`fireworks`. Aligns with the new managed-first onboarding.
|
|
24
|
+
|
|
25
|
+
### Added
|
|
26
|
+
- `npm postinstall` hook prints a one-screen welcome with the two start
|
|
27
|
+
paths (managed / BYOK), docs/pricing links. Skipped on CI, dependency
|
|
28
|
+
installs, and when `NO_COLOR` is set. Bundled in the published tarball.
|
|
29
|
+
- `NotSignedInError` exported from `src/config/init.ts` so other entry
|
|
30
|
+
points can route the same friendly path if they hit this state.
|
|
31
|
+
|
|
10
32
|
## [2.1.0-beta.12] — 2026-05-23
|
|
11
33
|
|
|
12
34
|
### Fixed
|