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
6 changes: 0 additions & 6 deletions .changeset/create-knitkit.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/rename-knit-error.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/semver-union-ranges.md

This file was deleted.

14 changes: 14 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @knitkit/cli

## 0.1.1

### Patch Changes

- c785c50: Rename the public error type to `KnitError` / `isKnitError` / `KnitErrorCode`.

The old `FedkitError` / `isFedkitError` / `FedkitErrorCode` names are kept as deprecated
aliases that point at the renamed symbols, so existing `catch` code keeps working. They will
be removed in a future minor — update imports to the `Knit*` names.

- Updated dependencies [c785c50]
- Updated dependencies [ac4ae11]
- @knitkit/runtime@0.2.0

## 0.1.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@knitkit/cli",
"version": "0.1.0",
"version": "0.1.1",
"description": "CLI for knitkit: shared-deps emitter, manifest generation, integrity hashes, types sync.",
"type": "module",
"bin": {
Expand All @@ -15,7 +15,7 @@
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@knitkit/runtime": "^0.1.0",
"@knitkit/runtime": "^0.2.0",
"esbuild": "^0.21.5"
},
"peerDependencies": {
Expand Down
8 changes: 8 additions & 0 deletions packages/create-knitkit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# create-knitkit

## 0.1.0

### Minor Changes

- 34d9303: New package: `npm create knitkit my-app` scaffolds a runnable host + remote starter (shared
singleton, zero build step) so you can see knitkit working in one command.
2 changes: 1 addition & 1 deletion packages/create-knitkit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-knitkit",
"version": "0.0.0",
"version": "0.1.0",
"description": "Scaffold a runnable knitkit starter (host + remote, shared singleton) in one command.",
"type": "module",
"bin": {
Expand Down
8 changes: 8 additions & 0 deletions packages/edge/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @knitkit/edge

## 0.1.1

### Patch Changes

- Updated dependencies [c785c50]
- Updated dependencies [ac4ae11]
- @knitkit/runtime@0.2.0

## 0.1.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/edge/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@knitkit/edge",
"version": "0.1.0",
"version": "0.1.1",
"description": "Edge composition for knitkit: ESI-style HTML stream stitching for Cloudflare Workers / Deno Deploy / Vercel Edge.",
"type": "module",
"main": "./dist/index.js",
Expand All @@ -23,7 +23,7 @@
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@knitkit/runtime": "^0.1.0"
"@knitkit/runtime": "^0.2.0"
},
"devDependencies": {
"tsup": "^8.1.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @knitkit/node

## 0.1.1

### Patch Changes

- Updated dependencies [c785c50]
- Updated dependencies [ac4ae11]
- @knitkit/runtime@0.2.0

## 0.1.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@knitkit/node",
"version": "0.1.0",
"version": "0.1.1",
"description": "Node SSR for knitkit: module.register loader hooks, module cache, SRI, import-map serialization for hydration parity.",
"type": "module",
"main": "./dist/index.js",
Expand Down Expand Up @@ -33,7 +33,7 @@
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@knitkit/runtime": "^0.1.0"
"@knitkit/runtime": "^0.2.0"
},
"devDependencies": {
"@types/node": "^20.12.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @knitkit/react

## 0.1.1

### Patch Changes

- Updated dependencies [c785c50]
- Updated dependencies [ac4ae11]
- @knitkit/runtime@0.2.0

## 0.1.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@knitkit/react",
"version": "0.1.0",
"version": "0.1.1",
"description": "Thin React client wrapper for knitkit: <RemoteComponent> (lazy + Suspense + error boundary) over loadRemote.",
"type": "module",
"main": "./dist/index.js",
Expand All @@ -26,7 +26,7 @@
"react": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"@knitkit/runtime": "^0.1.0"
"@knitkit/runtime": "^0.2.0"
},
"devDependencies": {
"@testing-library/react": "^14.3.1",
Expand Down
15 changes: 15 additions & 0 deletions packages/runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @knitkit/runtime

## 0.2.0

### Minor Changes

- c785c50: Rename the public error type to `KnitError` / `isKnitError` / `KnitErrorCode`.

The old `FedkitError` / `isFedkitError` / `FedkitErrorCode` names are kept as deprecated
aliases that point at the renamed symbols, so existing `catch` code keeps working. They will
be removed in a future minor — update imports to the `Knit*` names.

- ac4ae11: Negotiation now accepts `||` union ranges (`^17 || ^18`), whitespace intersections
(`>=1.2.0 <2.0.0`), and partial caret/tilde operands (`^18`, `~1.2`) in `requiredVersion`.
A range is parsed as a union of comparator sets, matching node-semver's model, so common
real-world ranges no longer fail validation.

## 0.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@knitkit/runtime",
"version": "0.1.0",
"version": "0.2.0",
"description": "Runtime-first, bundler-agnostic module federation on native ESM + import maps.",
"type": "module",
"main": "./dist/index.js",
Expand Down
Loading