Skip to content

Commit e9f1b91

Browse files
chore(release): 1.8.2 [skip ci]
## [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)
1 parent 47542de commit e9f1b91

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## [1.8.2](https://github.com/awinogrodzki/next-firebase-auth-edge/compare/v1.8.1...v1.8.2) (2024-11-07)
2+
3+
4+
### Bug Fixes
5+
6+
* **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))
7+
* add logs to invalid token comparator func ([11eaede](https://github.com/awinogrodzki/next-firebase-auth-edge/commit/11eaedee236b4cf93f5b2542ae10eebbe0c86884))
8+
* added additional logs around cookie parser ([1550c80](https://github.com/awinogrodzki/next-firebase-auth-edge/commit/1550c80e504e7e49ff44a89dd20c59c2878b6dbc))
9+
* added additional logs to debug a failed verification in auth middleware ([30ddc5e](https://github.com/awinogrodzki/next-firebase-auth-edge/commit/30ddc5e6f4cb7c7d713cc210d77648d8722d924c))
10+
* 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))
11+
* debug Vercel logging by removing inheritance from Error ([46ca356](https://github.com/awinogrodzki/next-firebase-auth-edge/commit/46ca35632f46d92dc4f0229552c09e4f455fee58))
12+
* export error module explicitly ([575281c](https://github.com/awinogrodzki/next-firebase-auth-edge/commit/575281c45e037eccdf48c833ae605cd373388896))
13+
* remove console.log and improve debug logs around token fetching ([31dfbd2](https://github.com/awinogrodzki/next-firebase-auth-edge/commit/31dfbd2226dcd775bd4a76cdb4a5c5f04f72954e))
14+
* remove debug logs from cookie parser ([2ce3190](https://github.com/awinogrodzki/next-firebase-auth-edge/commit/2ce3190cbffa476fd228f6cc1bf578cae6c8591f))
15+
* remove unnecessary async in get tokens functions ([c0f530c](https://github.com/awinogrodzki/next-firebase-auth-edge/commit/c0f530c3ecfe9c0e120f20d4a9e3bcab264a28db))
16+
* 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))
17+
* **#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)
18+
119
## [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)
220

321

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "next-firebase-auth-edge",
3-
"version": "1.8.2-canary.11",
3+
"version": "1.8.2",
44
"description": "Next.js Firebase Authentication for Edge and server runtimes. Compatible with latest Next.js features.",
55
"files": [
66
"lib/**/*.js",

0 commit comments

Comments
 (0)