Skip to content

Commit 52d302a

Browse files
authored
Merge branch 'main' into awad/add-tracing-channels
2 parents 7b64378 + 4d590fe commit 52d302a

File tree

6 files changed

+1220
-1568
lines changed

6 files changed

+1220
-1568
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,15 @@ jobs:
6868
- run: pnpm install
6969
- run: pnpm changelogen --bump --canary nightly
7070
- run: npm i -g npm@latest && npm publish --tag latest
71+
publish-pkg-pr-new:
72+
runs-on: ubuntu-latest
73+
needs: [tests_common, tests_node, tests_deno, tests_bun]
74+
steps:
75+
- uses: actions/checkout@v5
76+
with: { fetch-depth: 0 }
77+
- run: npm i -fg corepack && corepack enable
78+
- uses: actions/setup-node@v6
79+
with: { node-version: lts/*, cache: "pnpm" }
80+
- run: pnpm install
81+
- run: pnpm build
82+
- run: pnpm dlx pkg-pr-new publish || true

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## v0.9.6
4+
5+
[compare changes](https://github.com/h3js/srvx/compare/v0.9.5...v0.9.6)
6+
7+
### 🩹 Fixes
8+
9+
- **request:** Use unique global cache key ([ab38ea4](https://github.com/h3js/srvx/commit/ab38ea4))
10+
- Handle no env vars for colors ([#146](https://github.com/h3js/srvx/pull/146))
11+
12+
### 🏡 Chore
13+
14+
- Upgrade vitest to v4 ([#138](https://github.com/h3js/srvx/pull/138))
15+
- Update deps ([28dcbed](https://github.com/h3js/srvx/commit/28dcbed))
16+
17+
### ❤️ Contributors
18+
19+
- Ian Bobinac <ian.units@gmail.com>
20+
- Pooya Parsa ([@pi0](https://github.com/pi0))
21+
322
## v0.9.5
423

524
[compare changes](https://github.com/h3js/srvx/compare/v0.9.3...v0.9.5)

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "srvx",
3-
"version": "0.9.5",
3+
"version": "0.9.6",
44
"description": "Universal Server API based on web platform standards. Works seamlessly with Deno, Bun and Node.js.",
55
"homepage": "https://srvx.h3.dev",
66
"repository": "h3js/srvx",
@@ -59,38 +59,38 @@
5959
"srvx": "link:."
6060
},
6161
"devDependencies": {
62-
"@cloudflare/workers-types": "^4.20251014.0",
63-
"@hono/node-server": "^1.19.5",
62+
"@cloudflare/workers-types": "^4.20251120.0",
63+
"@hono/node-server": "^1.19.6",
6464
"@mitata/counters": "^0.0.8",
6565
"@mjackson/node-fetch-server": "^0.7.0",
66-
"@types/bun": "^1.3.0",
66+
"@types/bun": "^1.3.2",
6767
"@types/deno": "^2.5.0",
68-
"@types/express": "^5.0.3",
69-
"@types/node": "^24.9.0",
68+
"@types/express": "^5.0.5",
69+
"@types/node": "^24.10.1",
7070
"@types/node-forge": "^1.3.14",
71-
"@types/serviceworker": "^0.0.158",
72-
"@vitest/coverage-v8": "^3.2.4",
73-
"@whatwg-node/server": "^0.10.13",
71+
"@types/serviceworker": "^0.0.167",
72+
"@vitest/coverage-v8": "^4.0.10",
73+
"@whatwg-node/server": "^0.10.17",
7474
"automd": "^0.4.2",
7575
"changelogen": "^0.6.2",
76-
"eslint": "^9.38.0",
76+
"eslint": "^9.39.1",
7777
"eslint-config-unjs": "^0.5.0",
7878
"execa": "^9.6.0",
7979
"express": "^5.1.0",
80-
"fastify": "^5.6.1",
80+
"fastify": "^5.6.2",
8181
"get-port-please": "^3.2.0",
8282
"mdbox": "^0.1.1",
8383
"mitata": "^1.0.34",
8484
"node-forge": "^1.3.1",
85-
"obuild": "^0.2.1",
85+
"obuild": "^0.4.1",
8686
"prettier": "^3.6.2",
87-
"srvx-release": "npm:srvx@0.8.16",
87+
"srvx-release": "npm:srvx@^0.9.6",
8888
"tslib": "^2.8.1",
8989
"typescript": "^5.9.3",
9090
"undici": "^7.16.0",
91-
"vitest": "^3.2.4"
91+
"vitest": "^4.0.10"
9292
},
93-
"packageManager": "pnpm@10.18.3",
93+
"packageManager": "pnpm@10.22.0",
9494
"engines": {
9595
"node": ">=20.16.0"
9696
}

0 commit comments

Comments
 (0)