@fastly/hono-fastly-compute 0.3.4 → 0.3.5

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.
package/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [unreleased]
9
9
 
10
+ ## [0.3.5] - 2025-10-19
11
+
12
+ ### Fixed
13
+
14
+ - Fixed incorrect type on FireFn overload
15
+
10
16
  ## [0.3.4] - 2025-10-17
11
17
 
12
18
  ### Added
@@ -48,7 +54,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
48
54
 
49
55
  - Initial public release
50
56
 
51
- [unreleased]: https://github.com/fastly/hono-fastly-compute/compare/v0.3.4...HEAD
57
+ [unreleased]: https://github.com/fastly/hono-fastly-compute/compare/v0.3.5...HEAD
58
+ [0.3.5]: https://github.com/fastly/hono-fastly-compute/compare/v0.3.4...v0.3.5
52
59
  [0.3.4]: https://github.com/fastly/hono-fastly-compute/compare/v0.3.3...v0.3.4
53
60
  [0.3.3]: https://github.com/fastly/hono-fastly-compute/compare/v0.3.2...v0.3.3
54
61
  [0.3.2]: https://github.com/fastly/hono-fastly-compute/compare/v0.3.1...v0.3.2
package/build/fire.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import type { Schema } from 'hono';
2
2
  import type { HonoBase } from 'hono/hono-base';
3
- import type { BindingsDefs, ContextProxy } from '@fastly/compute-js-context';
3
+ import type { BindingsDefs } from '@fastly/compute-js-context';
4
4
  import { type BindingsWithClientInfo, type HandleOptions } from './handler.js';
5
5
  /**
6
6
  * Registers a Hono app to handle fetch events in Fastly Compute.
@@ -29,7 +29,7 @@ type FireFn<D extends BindingsDefs> = {
29
29
  <V extends {
30
30
  Variables?: object;
31
31
  }, S extends Schema, BasePath extends string>(app: HonoBase<{
32
- Bindings: ContextProxy<D>;
32
+ Bindings: BindingsWithClientInfo<D>;
33
33
  } & V, S, BasePath>, options?: HandleOptions): void;
34
34
  /**
35
35
  * The inferred bindings type, derived from the defs passed to `buildFire()`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fastly/hono-fastly-compute",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "Helper utilities for using Hono with Fastly Compute",
5
5
  "license": "MIT",
6
6
  "repository": {