Skip to content

Commit 4746a77

Browse files
authored
Merge pull request #80 from bikeshaving/release/v0.2.18
release: v0.2.18
2 parents 0ce53cc + 5fb2ad6 commit 4746a77

3 files changed

Lines changed: 27 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,31 @@
22

33
All notable changes to Shovel will be documented in this file.
44

5+
## [0.2.18] - 2026-03-16
6+
7+
### Features
8+
9+
- **Glob asset imports** — Import multiple static files with a single glob pattern:
10+
`import urls from "./public/**/*" with { assetBase: "/", assetName: "[name].[ext]" }`
11+
Files flow through the existing asset pipeline (hashing, manifesting, dist/public/).
12+
Works across all platforms (Node, Bun, Cloudflare). ([#75](https://github.com/bikeshaving/shovel/issues/75), [PR #77](https://github.com/bikeshaving/shovel/pull/77))
13+
14+
### Dependencies
15+
16+
- Added `glob` package for glob pattern expansion in asset imports
17+
18+
## @b9g/platform-bun 0.1.17 - 2026-03-16
19+
20+
### Features
21+
22+
- **BroadcastChannel relay** — Worker code generation now includes BroadcastChannel message relay between supervisor and workers
23+
24+
## @b9g/broadcastchannel-redis 0.1.0 - 2026-03-16
25+
26+
### Features
27+
28+
- **Initial release** — Redis pub/sub backend for Shovel BroadcastChannel, enabling cross-process message broadcasting via Redis
29+
530
## @b9g/platform-cloudflare 0.1.17 - 2026-03-03
631

732
### Bug Fixes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@b9g/shovel",
3-
"version": "0.2.17",
3+
"version": "0.2.18",
44
"description": "ServiceWorker-first universal deployment platform. Write ServiceWorker apps once, deploy anywhere (Node/Bun/Cloudflare). Registry-based multi-app orchestration.",
55
"license": "MIT",
66
"repository": {

packages/platform-bun/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@b9g/platform-bun",
3-
"version": "0.1.16",
3+
"version": "0.1.17",
44
"description": "Bun platform adapter for Shovel with hot reloading and built-in TypeScript/JSX support",
55
"type": "module",
66
"scripts": {

0 commit comments

Comments
 (0)