diff --git a/CHANGELOG.md b/CHANGELOG.md index bcf4594..91c7a2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,35 @@ # Changelog + +## 0.3.0 + +- ### Features + + - **Allow configurable downgrade of ETag validator strength - [awwong1], [pull/315]** + + This allows users to override the default strong ETag validator behaviour to use weak ETag validators. This change allows the developer to use weak ETags and preserve 304 responses (e.g. on *.workers.dev domains). + +- ### Fixes + + - **Fix length property call on ArrayBuffer instance - [philipatkinson], [pull/295**] + + Previously when edge cached was enabled, the `content-length` of the response was not being set correctly. This was due to the `length` property of the `ArrayBuffer` instance being called instead of the `byteLength` property. This PR fixes this issue. + +- ### Maintenance + + - **chore(ci): bump node versions in actions - [KianNH], [pull/354]** + + This bumps the Node versions used in the CI actions to the latest LTS versions. + + - **chore: use tabs for indentation - [Cherry], [pull/355]** + + This PR changes the indentation of the project to use tabs instead of spaces, falling more in line with other Cloudflare JavaScript projects like wrangler. + + - **chore: bump dependencies - [Cherry], [pull/356]** + + This bumps many dependencies of the project to their latest versions. + + ## 0.2.0 - ### Features diff --git a/package-lock.json b/package-lock.json index 1f1c45e..cab925a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@cloudflare/kv-asset-handler", - "version": "0.2.0", + "version": "0.3.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@cloudflare/kv-asset-handler", - "version": "0.2.0", + "version": "0.3.0", "license": "MIT OR Apache-2.0", "dependencies": { "mime": "^3.0.0" diff --git a/package.json b/package.json index 7acf020..d9d7d82 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@cloudflare/kv-asset-handler", - "version": "0.2.0", + "version": "0.3.0", "description": "Routes requests to KV assets", "main": "dist/index.js", "types": "dist/index.d.ts",