Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
run: npm run test:templates

peer-floor:
name: Packed Askr peer floor (0.0.88)
name: Packed Askr peer floor (0.0.89)
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
Expand Down
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.22] - 2026-08-07

### Changed

- Upgrade the CLI, templates, and analyzer to TypeScript 7 and refresh supported dependencies.
- Normalize test names to the repository's behavioral naming convention.

### Fixed

- Validate referenced SSG assets before publishing output reports while preserving intentionally mismatched emitted asset types.
- Diagnose state getter value reads across expressions while preserving callable JSX accessor props.
- Enforce statically provable `For` `by` and `byIndex` contracts without rejecting unresolved dynamic or optional values.

## [0.0.21] - 2026-08-04

## [0.0.20] - 2026-08-02
Expand Down Expand Up @@ -51,7 +64,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Make database tooling work consistently across supported operating systems.

[Unreleased]: https://github.com/askrjs/askr-cli/compare/v0.0.20...HEAD
[Unreleased]: https://github.com/askrjs/askr-cli/compare/v0.0.22...HEAD
[0.0.22]: https://github.com/askrjs/askr-cli/compare/v0.0.21...v0.0.22
[0.0.21]: https://github.com/askrjs/askr-cli/compare/v0.0.20...v0.0.21
[0.0.20]: https://github.com/askrjs/askr-cli/compare/v0.0.19...v0.0.20
[0.0.19]: https://github.com/askrjs/askr-cli/compare/v0.0.18...v0.0.19
[0.0.18]: https://github.com/askrjs/askr-cli/compare/v0.0.17...v0.0.18
Expand Down
163 changes: 74 additions & 89 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@askrjs/cli",
"version": "0.0.21",
"version": "0.0.22",
"description": "Unified CLI for the Askr platform",
"homepage": "https://github.com/askrjs/askr-cli#readme",
"bugs": {
Expand Down Expand Up @@ -64,13 +64,13 @@
"typescript": "npm:@typescript/typescript6@^6.0.2"
},
"devDependencies": {
"@askrjs/askr": ">=0.0.88 <0.1.0",
"@askrjs/charts": ">=0.1.5 <0.2.0",
"@askrjs/logos": ">=0.0.6 <0.1.0",
"@askrjs/lucide": ">=0.0.8 <0.1.0",
"@askrjs/themes": ">=0.0.23 <0.1.0",
"@askrjs/ui": ">=0.0.26 <0.1.0",
"@askrjs/vite": ">=0.0.12 <0.1.0",
"@askrjs/askr": ">=0.0.89 <0.1.0",
"@askrjs/charts": ">=0.1.6 <0.2.0",
"@askrjs/logos": ">=0.0.7 <0.1.0",
"@askrjs/lucide": ">=0.0.9 <0.1.0",
"@askrjs/themes": ">=0.0.24 <0.1.0",
"@askrjs/ui": ">=0.0.27 <0.1.0",
"@askrjs/vite": ">=0.0.13 <0.1.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^26.2.0",
"@types/semver": "^7.8.0",
Expand All @@ -81,7 +81,7 @@
"vitest": "^4.1.10"
},
"peerDependencies": {
"@askrjs/askr": ">=0.0.88 <0.1.0"
"@askrjs/askr": ">=0.0.89 <0.1.0"
},
"peerDependenciesMeta": {
"@askrjs/askr": {
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/peer-floor.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test("should ensure packed CLI works with the minimum supported Askr peer", asyn
private: true,
type: "module",
dependencies: {
"@askrjs/askr": "0.0.88",
"@askrjs/askr": "0.0.89",
"@askrjs/cli": `file:${archive}`,
},
},
Expand Down