@fastly/hono-fastly-compute 0.2.0 → 0.3.0

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,11 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [unreleased]
9
9
 
10
- ## [0.2.0] - 2025-10-06
10
+ ## [0.3.0] - 2025-10-06
11
11
 
12
12
  ### Changed
13
13
 
14
- - BREAKING: Updated to new identifiers from `@fastly/compute-js-context`
14
+ - Moved to `@fastly` scope
15
15
 
16
16
  ## [0.1.0] - 2025-10-03
17
17
 
@@ -19,6 +19,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
19
19
 
20
20
  - Initial public release
21
21
 
22
- [unreleased]: https://github.com/fastly/hono-fastly-compute/compare/v0.2.0...HEAD
23
- [0.2.0]: https://github.com/fastly/hono-fastly-compute/compare/v0.1.0...v0.2.0
22
+ [unreleased]: https://github.com/fastly/hono-fastly-compute/compare/v0.3.0...HEAD
23
+ [0.3.0]: https://github.com/fastly/hono-fastly-compute/compare/v0.1.0...v0.3.0
24
24
  [0.1.0]: https://github.com/fastly/hono-fastly-compute/releases/tag/v0.1.0
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Hono Adapter for Fastly Compute
2
2
 
3
+ > NOTE: `@fastly/hono-fastly-compute` is provided as a Fastly Labs product. Visit the [Fastly Labs](https://www.fastlylabs.com/) site for terms of use.
4
+
3
5
  This library provides an adapter for using the [Hono](https://hono.dev/) web framework with [Fastly Compute](https://www.fastly.com/products/edge-compute). It simplifies the process of creating Hono applications that run on Fastly's edge platform.
4
6
 
5
7
  ## Features
@@ -95,7 +97,17 @@ The core adapter function that connects Hono to the Fastly Compute `FetchEvent`.
95
97
 
96
98
  ### `logFastlyServiceVersion()`
97
99
 
98
- A middleware for Hono that logs the string `FASTLY_SERVICE_VERSION: <service-version>` environment variable to the console.
100
+ A Hono middleware that logs to the console the string `FASTLY_SERVICE_VERSION` followed by the value of the environment variable **FASTLY_SERVICE_VERSION**.
101
+
102
+ ## Issues
103
+
104
+ If you encounter any non-security-related bug or unexpected behavior, please [file an issue][bug] using the bug report template.
105
+
106
+ [bug]: https://github.com/fastly/hono-fastly-compute/issues/new?labels=bug
107
+
108
+ ### Security issues
109
+
110
+ Please see our [SECURITY.md](SECURITY.md) for guidance on reporting security-related issues.
99
111
 
100
112
  ## License
101
113
 
package/SECURITY.md ADDED
@@ -0,0 +1,13 @@
1
+ ## Report a security issue
2
+
3
+ The project team welcomes security reports and is committed to providing prompt attention to security issues. Security
4
+ issues should be reported privately via [Fastly’s security issue reporting process](https://www.fastly.com/security/report-security-issue).
5
+
6
+ ## Security advisories
7
+
8
+ Remediation of security vulnerabilities is prioritized by the project team. The project team endeavors to coordinate
9
+ remediation with third-party stakeholders, and is committed to transparency in the disclosure process. The team announces
10
+ security issues via [GitHub](https://github.com/fastly/hono-fastly-compute/releases) on a best-effort basis.
11
+
12
+ Note that communications related to security issues in Fastly-maintained OSS as described here are distinct from
13
+ [Fastly Security Advisories](https://www.fastly.com/security-advisories).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fastly/hono-fastly-compute",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "Helper utilities for using Hono with Fastly Compute",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -27,7 +27,7 @@
27
27
  },
28
28
  "dependencies": {
29
29
  "@fastly/js-compute": "^3.0.0",
30
- "@fastly/compute-js-context": "^0.3.0"
30
+ "@fastly/compute-js-context": "^0.4.0"
31
31
  },
32
32
  "devDependencies": {
33
33
  "hono": "^4.9.5",
@@ -43,7 +43,8 @@
43
43
  "build/**/*.d.ts",
44
44
  "LICENSE",
45
45
  "README.md",
46
- "CHANGELOG.md"
46
+ "CHANGELOG.md",
47
+ "SECURITY.md"
47
48
  ],
48
49
  "keywords": [
49
50
  "hono",