From e4c93119fffe9d098232891d4950a6cc4eb51309 Mon Sep 17 00:00:00 2001 From: JA Castro <51177379+ubinatus@users.noreply.github.com> Date: Fri, 7 Mar 2025 21:44:04 -0500 Subject: [PATCH] chore: release 0.2.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ package.json | 19 +++++++++++++++---- 3 files changed, 23 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 9d1a25b..efc4499 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.2.0" + ".": "0.2.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e94f83a..7e9b0d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.1](https://github.com/ubinatus/hono-cloudfront/compare/v0.2.0...v0.2.1) (2025-03-08) + + +### Bug Fixes + +* resolve `cloudFrontViewer` in `ContextVariableMap` ([b09e558](https://github.com/ubinatus/hono-cloudfront/commit/b09e558f09548a0aab58104692ad445a31323185)) + ## [0.2.0](https://github.com/ubinatus/hono-cloudfront/compare/v0.1.0...v0.2.0) (2025-03-08) diff --git a/package.json b/package.json index 825432e..6a1ca41 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hono-cloudfront", - "version": "0.2.0", + "version": "0.2.1", "description": "Hono middleware for to use with Cloudfront in front of a AWS Lambda", "author": "JA Castro <@ubinatus>", "homepage": "https://github.com/ubinatus/hono-cloudfront#readme", @@ -9,7 +9,13 @@ }, "repository": "github:ubinatus/hono-cloudfront", "license": "MIT", - "keywords": ["hono", "cloudfront", "lambda", "middleware", "typescript"], + "keywords": [ + "hono", + "cloudfront", + "lambda", + "middleware", + "typescript" + ], "type": "module", "exports": { ".": { @@ -17,7 +23,9 @@ "import": "./dist/index.js" } }, - "files": ["dist"], + "files": [ + "dist" + ], "engines": { "node": ">=18" }, @@ -48,6 +56,9 @@ "vitest": "^3.0.8" }, "pnpm": { - "onlyBuiltDependencies": ["@biomejs/biome", "esbuild"] + "onlyBuiltDependencies": [ + "@biomejs/biome", + "esbuild" + ] } }