diff --git a/.changeset/route-tree-and-api-adapters.md b/.changeset/route-tree-and-api-adapters.md deleted file mode 100644 index 5e639f7..0000000 --- a/.changeset/route-tree-and-api-adapters.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"filesystem-routing": minor ---- - -Ship the manifest's request-dispatch consumer alongside the manifest. `filesystem-routing/api` serves the flat manifest's `$GET`/`$POST`/… handler refs as fetch-style `(request, next)` middleware: radix-tree matching with `(group)` stripping and catch-alls, params written onto the request event, HEAD→GET fallback, unmatched requests advancing the chain. A port of SolidStart's private implementation, taking the manifest as an argument — no virtual-module imports, no framework required. Route emission stays with each router's own package: Solid Router's adapter is `@solidjs/router/fs`. diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f49225..5f469b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # filesystem-routing +## 0.2.0 + +### Minor Changes + +- 666e4e0: Ship the manifest's request-dispatch consumer alongside the manifest. `filesystem-routing/api` serves the flat manifest's `$GET`/`$POST`/… handler refs as fetch-style `(request, next)` middleware: radix-tree matching with `(group)` stripping and catch-alls, params written onto the request event, HEAD→GET fallback, unmatched requests advancing the chain. A port of SolidStart's private implementation, taking the manifest as an argument — no virtual-module imports, no framework required. Route emission stays with each router's own package: Solid Router's adapter is `@solidjs/router/fs`. + ## 0.1.2 ### Patch Changes diff --git a/package.json b/package.json index 16f6d4e..acdc871 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "filesystem-routing", "description": "Router-neutral file-system routing: scans a route directory into a neutral route manifest with pluggable conventions and delivery adapters", "license": "MIT", - "version": "0.1.2", + "version": "0.2.0", "author": "Ryan Carniato", "homepage": "https://github.com/solidjs/filesystem-routing#readme", "repository": {