-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(.gitignore): add clinic #761
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bodinsamuel
referenced
this pull request
in specfy/specfy
Aug 7, 2023
…132) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@fastify/passport](http://passportjs.org/) ([source](https://github.com/fastify/fastify-passport)) | [`2.2.0` -> `2.3.0`](https://renovatebot.com/diffs/npm/@fastify%2fpassport/2.2.0/2.3.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@fastify%2fpassport/2.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@fastify%2fpassport/2.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@fastify%2fpassport/2.2.0/2.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@fastify%2fpassport/2.2.0/2.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | ### GitHub Vulnerability Alerts #### [CVE-2023-29020](https://github.com/fastify/fastify-passport/security/advisories/GHSA-2ccf-ffrj-m4qw) The [CSRF](https://owasp.org/www-community/attacks/csrf) protection enforced by the `@fastify/csrf-protection` library, when combined with `@fastify/passport`, can be bypassed by network and same-site attackers. ## Details `fastify/csrf-protection` implements the [synchronizer token pattern](https://cheatsheetseries.owasp.org/cheatsheets/Cross-Site_Request_Forgery_Prevention_Cheat_Sheet.html#synchronizer-token-pattern) (using plugins `@fastify/session` and `@fastify/secure-session`) by storing a random value used for CSRF token generation in the `_csrf` attribute of a user's session. The `@fastify/passport` library does not clear the session object upon authentication, preserving the `_csrf` attribute between pre-login and authenticated sessions. Consequently, CSRF tokens generated before authentication are still valid. Network and [same-site attackers](https://canitakeyoursubdomain.name/) can thus obtain a CSRF token for their pre-session, fixate that pre-session in the victim's browser via cookie tossing, and then perform a CSRF attack after the victim authenticates. ## Fix As a solution, newer versions of `@fastify/passport` include the configuration options * `clearSessionOnLogin (default: true)` and * `clearSessionIgnoreFields (default: ['session'])` to clear all the session attributes by default, preserving those explicitly defined in `clearSessionIgnoreFields`. ## Credits * Pedro Adão (@​pedromigueladao), [Instituto Superior Técnico, University of Lisbon](https://tecnico.ulisboa.pt/) * Marco Squarcina (@​lavish), [Security & Privacy Research Unit, TU Wien](https://secpriv.wien/) #### [CVE-2023-29019](https://github.com/fastify/fastify-passport/security/advisories/GHSA-4m3m-ppvx-xgw9) Applications using `@fastify/passport` for user authentication, in combination with `@fastify/session` as the underlying session management mechanism, are vulnerable to [session fixation attacks](https://owasp.org/www-community/attacks/Session_fixation) from network and same-site attackers. ## Details fastify applications rely on the `@fastify/passport` library for user authentication. The login and user validation are performed by the `authenticate` function. When executing this function, the `sessionId` is preserved between the pre-login and the authenticated session. Network and [same-site attackers](https://canitakeyoursubdomain.name/) can hijack the victim's session by tossing a valid `sessionId` cookie in the victim's browser and waiting for the victim to log in on the website. ## Fix As a solution, newer versions of `@fastify/passport` regenerate `sessionId` upon login, preventing the attacker-controlled pre-session cookie from being upgraded to an authenticated session. ## Credits * Pedro Adão (@​pedromigueladao), [Instituto Superior Técnico, University of Lisbon](https://tecnico.ulisboa.pt/) * Marco Squarcina (@​lavish), [Security & Privacy Research Unit, TU Wien](https://secpriv.wien/) --- ### Release Notes <details> <summary>fastify/fastify-passport (@​fastify/passport)</summary> ### [`v2.3.0`](https://github.com/fastify/fastify-passport/releases/tag/v2.3.0) [Compare Source](https://github.com/fastify/fastify-passport/compare/v2.2.0...v2.3.0) #### ⚠️ Security Release ⚠️ This release fixes two security vulnerabilities: - ([CVE-2023-29020](https://cve.report/CVE-2023-29020)) - the [CSRF](https://owasp.org/www-community/attacks/csrf) protection enforced by the [@​fastify/csrf-protection](https://github.com/fastify/csrf-protection) library, when combined with [@​fastify/passport](https://github.com/fastify/passport), can be bypassed by network and same-site attackers. More details at [GHSA-2ccf-ffrj-m4qw](https://github.com/fastify/fastify-passport/security/advisories/GHSA-2ccf-ffrj-m4qw). - ([CVE-2023-29019](CVE-2023-29019)) - Applications using [@​fastify/passport](https://github.com/fastify/passport) for user authentication, in combination with [@​fastify/session](https://github.com/fastify/session) as the underlying session management mechanism, are vulnerable to [session fixation attacks](https://owasp.org/www-community/attacks/Session_fixation) from network and same-site attackers.. More details at [GHSA-4m3m-ppvx-xgw9](https://github.com/fastify/fastify-passport/security/advisories/GHSA-4m3m-ppvx-xgw9). #### What's Changed - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.31.0 to 5.32.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/631](https://github.com/fastify/fastify-passport/pull/631) - chore(deps-dev): bump openid-client from 5.1.6 to 5.1.8 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/632](https://github.com/fastify/fastify-passport/pull/632) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.31.0 to 5.32.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/633](https://github.com/fastify/fastify-passport/pull/633) - chore(deps-dev): bump [@​types/node](https://github.com/types/node) from 18.6.3 to 18.6.4 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/634](https://github.com/fastify/fastify-passport/pull/634) - chore(deps): bump fastify-plugin from 4.0.0 to 4.1.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/635](https://github.com/fastify/fastify-passport/pull/635) - chore(deps-dev): bump [@​types/passport](https://github.com/types/passport) from 1.0.9 to 1.0.10 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/639](https://github.com/fastify/fastify-passport/pull/639) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.32.0 to 5.33.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/636](https://github.com/fastify/fastify-passport/pull/636) - chore(deps-dev): bump [@​types/semver](https://github.com/types/semver) from 7.3.10 to 7.3.12 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/641](https://github.com/fastify/fastify-passport/pull/641) - chore(deps-dev): bump eslint from 8.21.0 to 8.22.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/642](https://github.com/fastify/fastify-passport/pull/642) - chore(deps): bump fastify-plugin from 4.1.0 to 4.2.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/643](https://github.com/fastify/fastify-passport/pull/643) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.32.0 to 5.33.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/644](https://github.com/fastify/fastify-passport/pull/644) - chore(deps-dev): bump fastify from 4.3.0 to 4.4.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/640](https://github.com/fastify/fastify-passport/pull/640) - chore(deps-dev): bump [@​fastify/cookie](https://github.com/fastify/cookie) from 7.3.1 to 7.4.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/638](https://github.com/fastify/fastify-passport/pull/638) - chore(deps-dev): bump [@​types/node](https://github.com/types/node) from 18.6.4 to 18.7.3 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/637](https://github.com/fastify/fastify-passport/pull/637) - activate linting in ci workflow, fix CI Button link in readme by [@​Uzlopak](https://github.com/Uzlopak) in [https://github.com/fastify/fastify-passport/pull/648](https://github.com/fastify/fastify-passport/pull/648) - use FastifyPluginAsync instead of FastifyPlugin by [@​Uzlopak](https://github.com/Uzlopak) in [https://github.com/fastify/fastify-passport/pull/647](https://github.com/fastify/fastify-passport/pull/647) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.33.0 to 5.33.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/649](https://github.com/fastify/fastify-passport/pull/649) - chore(deps-dev): bump [@​types/node](https://github.com/types/node) from 18.7.3 to 18.7.9 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/651](https://github.com/fastify/fastify-passport/pull/651) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.33.0 to 5.33.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/653](https://github.com/fastify/fastify-passport/pull/653) - chore(deps-dev): bump [@​fastify/cookie](https://github.com/fastify/cookie) from 7.4.0 to 8.0.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/650](https://github.com/fastify/fastify-passport/pull/650) - chore(deps-dev): bump fastify from 4.4.0 to 4.5.2 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/652](https://github.com/fastify/fastify-passport/pull/652) - chore(deps): bump fastify-plugin from 4.2.0 to 4.2.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/654](https://github.com/fastify/fastify-passport/pull/654) - chore(deps-dev): bump openid-client from 5.1.8 to 5.1.9 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/655](https://github.com/fastify/fastify-passport/pull/655) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.33.1 to 5.35.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/658](https://github.com/fastify/fastify-passport/pull/658) - chore(deps-dev): bump [@​types/node](https://github.com/types/node) from 18.7.9 to 18.7.13 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/659](https://github.com/fastify/fastify-passport/pull/659) - chore(deps-dev): bump eslint from 8.22.0 to 8.23.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/660](https://github.com/fastify/fastify-passport/pull/660) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.33.1 to 5.35.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/661](https://github.com/fastify/fastify-passport/pull/661) - chore(deps-dev): bump fastify from 4.5.2 to 4.5.3 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/656](https://github.com/fastify/fastify-passport/pull/656) - chore(deps-dev): bump typescript from 4.7.4 to 4.8.2 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/657](https://github.com/fastify/fastify-passport/pull/657) - fix authorize typings by [@​Uzlopak](https://github.com/Uzlopak) in [https://github.com/fastify/fastify-passport/pull/662](https://github.com/fastify/fastify-passport/pull/662) - chore(deps-dev): bump [@​types/node](https://github.com/types/node) from 18.7.13 to 18.7.15 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/663](https://github.com/fastify/fastify-passport/pull/663) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.35.1 to 5.36.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/664](https://github.com/fastify/fastify-passport/pull/664) - chore(deps-dev): bump [@​fastify/cookie](https://github.com/fastify/cookie) from 8.0.0 to 8.1.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/665](https://github.com/fastify/fastify-passport/pull/665) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.35.1 to 5.36.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/666](https://github.com/fastify/fastify-passport/pull/666) - chore(deps-dev): bump [@​types/node](https://github.com/types/node) from 18.7.15 to 18.7.16 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/667](https://github.com/fastify/fastify-passport/pull/667) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.36.1 to 5.36.2 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/669](https://github.com/fastify/fastify-passport/pull/669) - chore(deps): bump [@​fastify/flash](https://github.com/fastify/flash) from 5.0.0 to 5.1.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/670](https://github.com/fastify/fastify-passport/pull/670) - chore(deps-dev): bump [@​fastify/session](https://github.com/fastify/session) from 9.0.0 to 10.0.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/671](https://github.com/fastify/fastify-passport/pull/671) - chore(deps-dev): bump typescript from 4.8.2 to 4.8.3 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/672](https://github.com/fastify/fastify-passport/pull/672) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.36.1 to 5.36.2 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/668](https://github.com/fastify/fastify-passport/pull/668) - chore(deps): bump jose from 4.8.1 to 4.9.3 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/673](https://github.com/fastify/fastify-passport/pull/673) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.36.2 to 5.37.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/674](https://github.com/fastify/fastify-passport/pull/674) - chore(deps-dev): bump tsd from 0.23.0 to 0.24.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/677](https://github.com/fastify/fastify-passport/pull/677) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.36.2 to 5.37.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/676](https://github.com/fastify/fastify-passport/pull/676) - chore(deps-dev): bump [@​types/passport](https://github.com/types/passport) from 1.0.10 to 1.0.11 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/680](https://github.com/fastify/fastify-passport/pull/680) - chore(deps-dev): bump [@​types/node](https://github.com/types/node) from 18.7.16 to 18.7.18 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/679](https://github.com/fastify/fastify-passport/pull/679) - chore(deps-dev): bump eslint from 8.23.0 to 8.23.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/675](https://github.com/fastify/fastify-passport/pull/675) - chore(deps-dev): bump fastify from 4.5.3 to 4.6.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/678](https://github.com/fastify/fastify-passport/pull/678) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.37.0 to 5.38.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/681](https://github.com/fastify/fastify-passport/pull/681) - chore(deps-dev): bump [@​types/node](https://github.com/types/node) from 18.7.18 to 18.7.21 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/683](https://github.com/fastify/fastify-passport/pull/683) - chore(deps-dev): bump eslint from 8.23.1 to 8.24.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/684](https://github.com/fastify/fastify-passport/pull/684) - chore(deps-dev): bump [@​fastify/cookie](https://github.com/fastify/cookie) from 8.1.0 to 8.3.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/685](https://github.com/fastify/fastify-passport/pull/685) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.37.0 to 5.38.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/682](https://github.com/fastify/fastify-passport/pull/682) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.38.0 to 5.38.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/688](https://github.com/fastify/fastify-passport/pull/688) - chore(deps-dev): bump [@​types/node](https://github.com/types/node) from 18.7.21 to 18.8.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/689](https://github.com/fastify/fastify-passport/pull/689) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.38.0 to 5.38.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/690](https://github.com/fastify/fastify-passport/pull/690) - chore(deps-dev): bump typescript from 4.8.3 to 4.8.4 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/691](https://github.com/fastify/fastify-passport/pull/691) - chore(deps-dev): bump openid-client from 5.1.9 to 5.1.10 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/692](https://github.com/fastify/fastify-passport/pull/692) - chore(deps-dev): bump fastify from 4.6.0 to 4.7.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/687](https://github.com/fastify/fastify-passport/pull/687) - chore(deps-dev): bump semver from 7.3.7 to 7.3.8 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/693](https://github.com/fastify/fastify-passport/pull/693) - chore(deps-dev): bump eslint from 8.24.0 to 8.25.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/695](https://github.com/fastify/fastify-passport/pull/695) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.38.1 to 5.39.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/694](https://github.com/fastify/fastify-passport/pull/694) - chore(deps-dev): bump [@​types/node](https://github.com/types/node) from 18.8.0 to 18.8.3 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/696](https://github.com/fastify/fastify-passport/pull/696) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.38.1 to 5.39.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/697](https://github.com/fastify/fastify-passport/pull/697) - chore(deps-dev): bump fastify from 4.7.0 to 4.8.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/698](https://github.com/fastify/fastify-passport/pull/698) - chore(deps-dev): bump [@​fastify/session](https://github.com/fastify/session) from 10.0.0 to 10.0.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/700](https://github.com/fastify/fastify-passport/pull/700) - chore(deps-dev): bump [@​types/node](https://github.com/types/node) from 18.8.3 to 18.11.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/699](https://github.com/fastify/fastify-passport/pull/699) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.39.0 to 5.40.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/701](https://github.com/fastify/fastify-passport/pull/701) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.39.0 to 5.40.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/702](https://github.com/fastify/fastify-passport/pull/702) - chore(deps): bump fastify-plugin from 4.2.1 to 4.3.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/703](https://github.com/fastify/fastify-passport/pull/703) - chore(deps-dev): bump [@​fastify/session](https://github.com/fastify/session) from 10.0.1 to 10.0.2 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/706](https://github.com/fastify/fastify-passport/pull/706) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.40.0 to 5.40.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/704](https://github.com/fastify/fastify-passport/pull/704) - chore(deps-dev): bump openid-client from 5.1.10 to 5.2.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/708](https://github.com/fastify/fastify-passport/pull/708) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.40.0 to 5.40.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/710](https://github.com/fastify/fastify-passport/pull/710) - chore(deps-dev): bump eslint from 8.25.0 to 8.26.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/707](https://github.com/fastify/fastify-passport/pull/707) - chore(deps-dev): bump fastify from 4.8.1 to 4.9.2 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/709](https://github.com/fastify/fastify-passport/pull/709) - chore(deps-dev): bump [@​types/node](https://github.com/types/node) from 18.11.0 to 18.11.4 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/705](https://github.com/fastify/fastify-passport/pull/705) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.40.1 to 5.41.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/711](https://github.com/fastify/fastify-passport/pull/711) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.40.1 to 5.41.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/713](https://github.com/fastify/fastify-passport/pull/713) - chore(deps-dev): bump [@​types/semver](https://github.com/types/semver) from 7.3.12 to 7.3.13 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/714](https://github.com/fastify/fastify-passport/pull/714) - chore(deps-dev): bump [@​types/node](https://github.com/types/node) from 18.11.4 to 18.11.9 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/715](https://github.com/fastify/fastify-passport/pull/715) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.41.0 to 5.42.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/716](https://github.com/fastify/fastify-passport/pull/716) - chore(deps-dev): bump eslint from 8.26.0 to 8.27.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/718](https://github.com/fastify/fastify-passport/pull/718) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.41.0 to 5.42.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/717](https://github.com/fastify/fastify-passport/pull/717) - chore(deps-dev): bump openid-client from 5.2.1 to 5.3.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/719](https://github.com/fastify/fastify-passport/pull/719) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.42.0 to 5.42.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/720](https://github.com/fastify/fastify-passport/pull/720) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.42.0 to 5.42.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/721](https://github.com/fastify/fastify-passport/pull/721) - Update README.md spelling error by [@​cloudsriseup](https://github.com/cloudsriseup) in [https://github.com/fastify/fastify-passport/pull/723](https://github.com/fastify/fastify-passport/pull/723) - Update Authenticator.ts spelling errors by [@​cloudsriseup](https://github.com/cloudsriseup) in [https://github.com/fastify/fastify-passport/pull/722](https://github.com/fastify/fastify-passport/pull/722) - chore(deps-dev): bump eslint from 8.27.0 to 8.28.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/725](https://github.com/fastify/fastify-passport/pull/725) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.42.1 to 5.43.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/728](https://github.com/fastify/fastify-passport/pull/728) - chore(deps-dev): bump typescript from 4.8.4 to 4.9.3 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/727](https://github.com/fastify/fastify-passport/pull/727) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.42.1 to 5.43.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/726](https://github.com/fastify/fastify-passport/pull/726) - chore(deps-dev): bump fastify from 4.9.2 to 4.10.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/724](https://github.com/fastify/fastify-passport/pull/724) - chore(deps-dev): bump fastify from 4.10.0 to 4.10.2 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/729](https://github.com/fastify/fastify-passport/pull/729) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.43.0 to 5.44.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/730](https://github.com/fastify/fastify-passport/pull/730) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.43.0 to 5.44.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/731](https://github.com/fastify/fastify-passport/pull/731) - chore(deps-dev): bump prettier from 2.7.1 to 2.8.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/732](https://github.com/fastify/fastify-passport/pull/732) - chore(deps-dev): bump eslint from 8.28.0 to 8.29.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/733](https://github.com/fastify/fastify-passport/pull/733) - chore(deps): bump fastify-plugin from 4.3.0 to 4.4.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/735](https://github.com/fastify/fastify-passport/pull/735) - chore(deps-dev): bump openid-client from 5.3.0 to 5.3.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/736](https://github.com/fastify/fastify-passport/pull/736) - chore(deps-dev): bump [@​types/node](https://github.com/types/node) from 18.11.9 to 18.11.10 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/738](https://github.com/fastify/fastify-passport/pull/738) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.44.0 to 5.45.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/740](https://github.com/fastify/fastify-passport/pull/740) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.44.0 to 5.45.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/739](https://github.com/fastify/fastify-passport/pull/739) - chore(deps-dev): bump tsd from 0.24.1 to 0.25.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/734](https://github.com/fastify/fastify-passport/pull/734) - chore(deps-dev): bump [@​fastify/session](https://github.com/fastify/session) from 10.0.2 to 10.1.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/737](https://github.com/fastify/fastify-passport/pull/737) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.45.0 to 5.46.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/744](https://github.com/fastify/fastify-passport/pull/744) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.45.0 to 5.46.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/745](https://github.com/fastify/fastify-passport/pull/745) - chore(deps-dev): bump prettier from 2.8.0 to 2.8.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/746](https://github.com/fastify/fastify-passport/pull/746) - chore(deps-dev): bump typescript from 4.9.3 to 4.9.4 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/747](https://github.com/fastify/fastify-passport/pull/747) - chore(deps-dev): bump [@​types/node](https://github.com/types/node) from 18.11.10 to 18.11.13 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/743](https://github.com/fastify/fastify-passport/pull/743) - chore(deps-dev): bump [@​fastify/secure-session](https://github.com/fastify/secure-session) from 5.2.0 to 5.3.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/742](https://github.com/fastify/fastify-passport/pull/742) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.46.0 to 5.46.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/748](https://github.com/fastify/fastify-passport/pull/748) - chore(deps-dev): bump [@​types/node](https://github.com/types/node) from 18.11.13 to 18.11.17 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/750](https://github.com/fastify/fastify-passport/pull/750) - chore(deps-dev): bump eslint from 8.29.0 to 8.30.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/751](https://github.com/fastify/fastify-passport/pull/751) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.46.0 to 5.46.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/749](https://github.com/fastify/fastify-passport/pull/749) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.46.1 to 5.47.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/752](https://github.com/fastify/fastify-passport/pull/752) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.46.1 to 5.47.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/753](https://github.com/fastify/fastify-passport/pull/753) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.47.0 to 5.47.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/756](https://github.com/fastify/fastify-passport/pull/756) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.47.0 to 5.47.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/755](https://github.com/fastify/fastify-passport/pull/755) - chore(deps-dev): bump eslint from 8.30.0 to 8.31.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/757](https://github.com/fastify/fastify-passport/pull/757) - chore(deps-dev): bump [@​fastify/session](https://github.com/fastify/session) from 10.1.0 to 10.1.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/758](https://github.com/fastify/fastify-passport/pull/758) - chore(deps-dev): bump [@​types/node](https://github.com/types/node) from 18.11.17 to 18.11.18 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/759](https://github.com/fastify/fastify-passport/pull/759) - chore(deps): bump json5 from 2.1.3 to 2.2.3 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/760](https://github.com/fastify/fastify-passport/pull/760) - chore(deps-dev): bump fastify from 4.10.2 to 4.11.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/754](https://github.com/fastify/fastify-passport/pull/754) - chore(.gitignore): add clinic by [@​Fdawgs](https://github.com/Fdawgs) in [https://github.com/fastify/fastify-passport/pull/761](https://github.com/fastify/fastify-passport/pull/761) - chore(deps-dev): bump eslint-config-prettier from 8.5.0 to 8.6.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/762](https://github.com/fastify/fastify-passport/pull/762) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.47.1 to 5.48.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/763](https://github.com/fastify/fastify-passport/pull/763) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.47.1 to 5.48.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/764](https://github.com/fastify/fastify-passport/pull/764) - chore(deps-dev): bump prettier from 2.8.1 to 2.8.2 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/765](https://github.com/fastify/fastify-passport/pull/765) - chore(deps-dev): bump prettier from 2.8.2 to 2.8.3 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/766](https://github.com/fastify/fastify-passport/pull/766) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.48.0 to 5.48.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/767](https://github.com/fastify/fastify-passport/pull/767) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.48.0 to 5.48.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/768](https://github.com/fastify/fastify-passport/pull/768) - chore(deps): bump fastify-plugin from 4.4.0 to 4.5.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/769](https://github.com/fastify/fastify-passport/pull/769) - chore(deps-dev): bump rimraf from 3.0.2 to 4.0.7 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/770](https://github.com/fastify/fastify-passport/pull/770) - chore(deps-dev): bump eslint from 8.31.0 to 8.32.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/771](https://github.com/fastify/fastify-passport/pull/771) - chore(deps-dev): bump [@​fastify/secure-session](https://github.com/fastify/secure-session) from 5.3.0 to 6.0.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/772](https://github.com/fastify/fastify-passport/pull/772) - chore(deps-dev): bump openid-client from 5.3.1 to 5.3.2 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/773](https://github.com/fastify/fastify-passport/pull/773) - chore(deps-dev): bump rimraf from 4.0.7 to 4.1.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/777](https://github.com/fastify/fastify-passport/pull/777) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.48.1 to 5.48.2 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/776](https://github.com/fastify/fastify-passport/pull/776) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.48.1 to 5.48.2 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/774](https://github.com/fastify/fastify-passport/pull/774) - chore(deps-dev): bump fastify from 4.11.0 to 4.12.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/775](https://github.com/fastify/fastify-passport/pull/775) - chore(deps-dev): bump rimraf from 4.1.1 to 4.1.2 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/779](https://github.com/fastify/fastify-passport/pull/779) - chore(deps-dev): bump eslint from 8.32.0 to 8.33.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/778](https://github.com/fastify/fastify-passport/pull/778) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.48.2 to 5.49.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/780](https://github.com/fastify/fastify-passport/pull/780) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.48.2 to 5.49.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/781](https://github.com/fastify/fastify-passport/pull/781) - chore(deps): bump http-cache-semantics from 4.1.0 to 4.1.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/782](https://github.com/fastify/fastify-passport/pull/782) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.49.0 to 5.50.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/783](https://github.com/fastify/fastify-passport/pull/783) - chore(deps-dev): bump openid-client from 5.3.2 to 5.4.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/784](https://github.com/fastify/fastify-passport/pull/784) - chore(deps-dev): bump [@​types/node](https://github.com/types/node) from 18.11.18 to 18.11.19 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/785](https://github.com/fastify/fastify-passport/pull/785) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.49.0 to 5.50.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/787](https://github.com/fastify/fastify-passport/pull/787) - chore(deps-dev): bump typescript from 4.9.4 to 4.9.5 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/786](https://github.com/fastify/fastify-passport/pull/786) - chore(deps-dev): bump [@​types/node](https://github.com/types/node) from 18.11.19 to 18.13.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/788](https://github.com/fastify/fastify-passport/pull/788) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.50.0 to 5.51.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/789](https://github.com/fastify/fastify-passport/pull/789) - chore(deps-dev): bump prettier from 2.8.3 to 2.8.4 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/791](https://github.com/fastify/fastify-passport/pull/791) - chore(deps-dev): bump eslint from 8.33.0 to 8.34.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/792](https://github.com/fastify/fastify-passport/pull/792) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.50.0 to 5.51.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/790](https://github.com/fastify/fastify-passport/pull/790) - chore(deps-dev): bump fastify from 4.12.0 to 4.13.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/793](https://github.com/fastify/fastify-passport/pull/793) - chore(deps-dev): bump [@​types/node](https://github.com/types/node) from 18.13.0 to 18.14.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/794](https://github.com/fastify/fastify-passport/pull/794) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.51.0 to 5.52.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/796](https://github.com/fastify/fastify-passport/pull/796) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.51.0 to 5.52.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/797](https://github.com/fastify/fastify-passport/pull/797) - chore(deps-dev): bump [@​types/passport](https://github.com/types/passport) from 1.0.11 to 1.0.12 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/795](https://github.com/fastify/fastify-passport/pull/795) - chore(deps-dev): bump [@​types/node](https://github.com/types/node) from 18.14.0 to 18.14.2 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/798](https://github.com/fastify/fastify-passport/pull/798) - chore(deps-dev): bump eslint from 8.34.0 to 8.35.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/799](https://github.com/fastify/fastify-passport/pull/799) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.52.0 to 5.53.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/800](https://github.com/fastify/fastify-passport/pull/800) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.52.0 to 5.53.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/801](https://github.com/fastify/fastify-passport/pull/801) - chore(.gitignore): add bun lockfile by [@​Fdawgs](https://github.com/Fdawgs) in [https://github.com/fastify/fastify-passport/pull/802](https://github.com/fastify/fastify-passport/pull/802) - chore(deps-dev): bump rimraf from 4.1.2 to 4.3.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/803](https://github.com/fastify/fastify-passport/pull/803) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.53.0 to 5.54.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/806](https://github.com/fastify/fastify-passport/pull/806) - chore(deps-dev): bump tsd from 0.25.0 to 0.26.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/805](https://github.com/fastify/fastify-passport/pull/805) - chore(deps-dev): bump [@​types/node](https://github.com/types/node) from 18.14.2 to 18.14.6 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/808](https://github.com/fastify/fastify-passport/pull/808) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.53.0 to 5.54.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/804](https://github.com/fastify/fastify-passport/pull/804) - chore(deps-dev): bump fastify from 4.13.0 to 4.14.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/809](https://github.com/fastify/fastify-passport/pull/809) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.54.0 to 5.54.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/810](https://github.com/fastify/fastify-passport/pull/810) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.54.0 to 5.54.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/811](https://github.com/fastify/fastify-passport/pull/811) - chore(deps-dev): bump [@​types/node](https://github.com/types/node) from 18.14.6 to 18.15.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/813](https://github.com/fastify/fastify-passport/pull/813) - chore(deps-dev): bump tsd from 0.26.0 to 0.27.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/815](https://github.com/fastify/fastify-passport/pull/815) - chore(deps-dev): bump eslint from 8.35.0 to 8.36.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/814](https://github.com/fastify/fastify-passport/pull/814) - chore(deps-dev): bump rimraf from 4.3.0 to 4.4.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/812](https://github.com/fastify/fastify-passport/pull/812) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.54.1 to 5.55.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/816](https://github.com/fastify/fastify-passport/pull/816) - chore(deps-dev): bump tsd from 0.27.0 to 0.28.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/818](https://github.com/fastify/fastify-passport/pull/818) - chore(deps-dev): bump [@​types/node](https://github.com/types/node) from 18.15.1 to 18.15.3 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/819](https://github.com/fastify/fastify-passport/pull/819) - chore(deps-dev): bump set-cookie-parser from 2.5.1 to 2.6.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/820](https://github.com/fastify/fastify-passport/pull/820) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.54.1 to 5.55.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/817](https://github.com/fastify/fastify-passport/pull/817) - chore(deps-dev): bump eslint-config-prettier from 8.7.0 to 8.8.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/822](https://github.com/fastify/fastify-passport/pull/822) - chore(deps-dev): bump rimraf from 4.4.0 to 4.4.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/823](https://github.com/fastify/fastify-passport/pull/823) - chore(deps-dev): bump [@​types/node](https://github.com/types/node) from 18.15.3 to 18.15.10 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/825](https://github.com/fastify/fastify-passport/pull/825) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.55.0 to 5.56.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/826](https://github.com/fastify/fastify-passport/pull/826) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.55.0 to 5.56.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/824](https://github.com/fastify/fastify-passport/pull/824) - chore(deps-dev): bump prettier from 2.8.4 to 2.8.7 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/827](https://github.com/fastify/fastify-passport/pull/827) - chore(deps-dev): bump fastify from 4.14.1 to 4.15.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/828](https://github.com/fastify/fastify-passport/pull/828) - chore(deps-dev): bump [@​fastify/session](https://github.com/fastify/session) from 10.1.1 to 10.2.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/829](https://github.com/fastify/fastify-passport/pull/829) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.56.0 to 5.57.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/832](https://github.com/fastify/fastify-passport/pull/832) - chore(deps-dev): bump [@​types/node](https://github.com/types/node) from 18.15.10 to 18.15.11 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/834](https://github.com/fastify/fastify-passport/pull/834) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 5.56.0 to 5.57.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/833](https://github.com/fastify/fastify-passport/pull/833) - chore(deps-dev): bump eslint from 8.36.0 to 8.37.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/831](https://github.com/fastify/fastify-passport/pull/831) - chore(deps-dev): bump tsd from 0.28.0 to 0.28.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/830](https://github.com/fastify/fastify-passport/pull/830) - chore(deps-dev): bump rimraf from 4.4.1 to 5.0.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/835](https://github.com/fastify/fastify-passport/pull/835) - chore(deps-dev): bump [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 5.57.0 to 5.57.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/837](https://github.com/fastify/fastify-passport/pull/837) - chore(deps-dev): bump eslint from 8.37.0 to 8.38.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/838](https://github.com/fastify/fastify-passport/pull/838) - chore(deps-dev): bump [@​fastify/session](https://github.com/fastify/session) from 10.2.0 to 10.2.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify-passport/pull/839](https://github.com/fastify/fastify-passport/pull/839) - chore(deps-dev): bump [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) fr </details> --- ### Configuration 📅 **Schedule**: Branch creation - "" in timezone Europe/Paris, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/specfy/specfy). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi4yNy4xIiwidXBkYXRlZEluVmVyIjoiMzYuMjcuMSIsInRhcmdldEJyYW5jaCI6ImNob3JlL3Jlbm92YXRlQmFzZUJyYW5jaCJ9--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
See fastify/skeleton#43
Checklist
and the Code of conduct