srvx 0.9.0 → 0.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -146,8 +146,7 @@ const NodeRequestHeaders = /* @__PURE__ */ (() => {
146
146
  for (let i = 0; i < len; i += 2) {
147
147
  const key = rawHeaders[i];
148
148
  if (key.charCodeAt(0) === 58) continue;
149
- const value = rawHeaders[i + 1];
150
- yield [key, value];
149
+ yield [key.toLowerCase(), rawHeaders[i + 1]];
151
150
  }
152
151
  }
153
152
  entries() {
package/dist/cli.mjs CHANGED
@@ -229,7 +229,7 @@ async function interceptListen(cb) {
229
229
  };
230
230
  }
231
231
  async function version() {
232
- const version$1 = "0.8.16";
232
+ const version$1 = "0.9.0";
233
233
  return `srvx ${version$1}\n${runtime()}`;
234
234
  }
235
235
  function runtime() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "srvx",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "Universal Server API based on web platform standards. Works seamlessly with Deno, Bun and Node.js.",
5
5
  "homepage": "https://srvx.h3.dev",
6
6
  "repository": "h3js/srvx",