Skip to content

Commit

Permalink
chore(release): 1.8.2 [skip ci]
Browse files Browse the repository at this point in the history
## [1.8.2](v1.8.1...v1.8.2) (2024-11-07)

### Bug Fixes

* **docs:** added `await` before calling `cookies` and `headers` due to change in Next.js 15 ([d14c9df](d14c9df))
* add logs to invalid token comparator func ([11eaede](11eaede))
* added additional logs around cookie parser ([1550c80](1550c80))
* added additional logs to debug a failed verification in auth middleware ([30ddc5e](30ddc5e))
* await on parse cookie result to work around [#271](#271) ([f6b5106](f6b5106))
* debug Vercel logging by removing inheritance from Error ([46ca356](46ca356))
* export error module explicitly ([575281c](575281c))
* remove console.log and improve debug logs around token fetching ([31dfbd2](31dfbd2))
* remove debug logs from cookie parser ([2ce3190](2ce3190))
* remove unnecessary async in get tokens functions ([c0f530c](c0f530c))
* work around [#271](#271) in getCookiesTokens ([5fef799](5fef799))
* **#271:** use runtime flag to identify invalid token error ([d7220b0](d7220b0)), closes [#271](#271)
  • Loading branch information
semantic-release-bot committed Nov 7, 2024
1 parent 47542de commit e9f1b91
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## [1.8.2](https://github.com/awinogrodzki/next-firebase-auth-edge/compare/v1.8.1...v1.8.2) (2024-11-07)


### Bug Fixes

* **docs:** added `await` before calling `cookies` and `headers` due to change in Next.js 15 ([d14c9df](https://github.com/awinogrodzki/next-firebase-auth-edge/commit/d14c9df55aa3476ea30d56b884599f4e8af9e3ff))
* add logs to invalid token comparator func ([11eaede](https://github.com/awinogrodzki/next-firebase-auth-edge/commit/11eaedee236b4cf93f5b2542ae10eebbe0c86884))
* added additional logs around cookie parser ([1550c80](https://github.com/awinogrodzki/next-firebase-auth-edge/commit/1550c80e504e7e49ff44a89dd20c59c2878b6dbc))
* added additional logs to debug a failed verification in auth middleware ([30ddc5e](https://github.com/awinogrodzki/next-firebase-auth-edge/commit/30ddc5e6f4cb7c7d713cc210d77648d8722d924c))
* await on parse cookie result to work around [#271](https://github.com/awinogrodzki/next-firebase-auth-edge/issues/271) ([f6b5106](https://github.com/awinogrodzki/next-firebase-auth-edge/commit/f6b51062b4308e32d1ef1d123912d21dc93d3f85))
* debug Vercel logging by removing inheritance from Error ([46ca356](https://github.com/awinogrodzki/next-firebase-auth-edge/commit/46ca35632f46d92dc4f0229552c09e4f455fee58))
* export error module explicitly ([575281c](https://github.com/awinogrodzki/next-firebase-auth-edge/commit/575281c45e037eccdf48c833ae605cd373388896))
* remove console.log and improve debug logs around token fetching ([31dfbd2](https://github.com/awinogrodzki/next-firebase-auth-edge/commit/31dfbd2226dcd775bd4a76cdb4a5c5f04f72954e))
* remove debug logs from cookie parser ([2ce3190](https://github.com/awinogrodzki/next-firebase-auth-edge/commit/2ce3190cbffa476fd228f6cc1bf578cae6c8591f))
* remove unnecessary async in get tokens functions ([c0f530c](https://github.com/awinogrodzki/next-firebase-auth-edge/commit/c0f530c3ecfe9c0e120f20d4a9e3bcab264a28db))
* work around [#271](https://github.com/awinogrodzki/next-firebase-auth-edge/issues/271) in getCookiesTokens ([5fef799](https://github.com/awinogrodzki/next-firebase-auth-edge/commit/5fef799648daa2a0fcf20829dd82b443b9f511e7))
* **#271:** use runtime flag to identify invalid token error ([d7220b0](https://github.com/awinogrodzki/next-firebase-auth-edge/commit/d7220b0e1dd642385d3320efd812b2e08117e51e)), closes [#271](https://github.com/awinogrodzki/next-firebase-auth-edge/issues/271)

## [1.8.2-canary.11](https://github.com/awinogrodzki/next-firebase-auth-edge/compare/v1.8.2-canary.10...v1.8.2-canary.11) (2024-11-07)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "next-firebase-auth-edge",
"version": "1.8.2-canary.11",
"version": "1.8.2",
"description": "Next.js Firebase Authentication for Edge and server runtimes. Compatible with latest Next.js features.",
"files": [
"lib/**/*.js",
Expand Down

0 comments on commit e9f1b91

Please sign in to comment.