-
Notifications
You must be signed in to change notification settings - Fork 213
Comparing changes
Open a pull request
base repository: mikenicholson/passport-jwt
base: 6ff2a4a63ff6e3475fc0fb28207221e9ca4d3d48
head repository: mikenicholson/passport-jwt
compare: 8f543a96f70c8356a13003c2c433b30a62f53a2b
Commits on Jan 14, 2017
-
Configuration menu - View commit details
-
Copy full SHA for b0cbe8b - Browse repository at this point
Copy the full SHA b0cbe8bView commit details
Commits on Jan 15, 2017
-
Merge pull request #92 from jacksonhoose/patch-1
fix some formatting
Configuration menu - View commit details
-
Copy full SHA for 82aee9d - Browse repository at this point
Copy the full SHA 82aee9dView commit details
Commits on Mar 12, 2017
-
Configuration menu - View commit details
-
Copy full SHA for c135b28 - Browse repository at this point
Copy the full SHA c135b28View commit details
Commits on Mar 23, 2017
-
Add support for secret/key provider
Greg Poole committedMar 23, 2017 Configuration menu - View commit details
-
Copy full SHA for fbbf17e - Browse repository at this point
Copy the full SHA fbbf17eView commit details
Commits on Mar 24, 2017
-
Change from a promise to a callback, update docs
Greg Poole committedMar 24, 2017 Configuration menu - View commit details
-
Copy full SHA for 3b55a13 - Browse repository at this point
Copy the full SHA 3b55a13View commit details -
Fix pointless whitepsace changes
Greg Poole committedMar 24, 2017 Configuration menu - View commit details
-
Copy full SHA for 4fb82ff - Browse repository at this point
Copy the full SHA 4fb82ffView commit details
Commits on Mar 25, 2017
-
Add all versions supported by passportjs
Plus a few new ones that are not in the passportjs .travis.yml yet.
Configuration menu - View commit details
-
Copy full SHA for 5b9d0e4 - Browse repository at this point
Copy the full SHA 5b9d0e4View commit details -
Configuration menu - View commit details
-
Copy full SHA for b9ff244 - Browse repository at this point
Copy the full SHA b9ff244View commit details
Commits on Mar 26, 2017
-
Greg Poole committed
Mar 26, 2017 Configuration menu - View commit details
-
Copy full SHA for a698173 - Browse repository at this point
Copy the full SHA a698173View commit details
Commits on Mar 27, 2017
-
Configuration menu - View commit details
-
Copy full SHA for ba75de2 - Browse repository at this point
Copy the full SHA ba75de2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5b8b5f3 - Browse repository at this point
Copy the full SHA 5b8b5f3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2a0f01b - Browse repository at this point
Copy the full SHA 2a0f01bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2eba070 - Browse repository at this point
Copy the full SHA 2eba070View commit details
Commits on May 7, 2017
-
Added `jsonWebTokenOptions` to options, which allows one to pass additional options to node-jsonwebtoken verifier. This way there won't be a need to change passport-jwt for any other custom option used in the verifier.
2Configuration menu - View commit details
-
Copy full SHA for c5df9c2 - Browse repository at this point
Copy the full SHA c5df9c2View commit details
Commits on May 9, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 09673a9 - Browse repository at this point
Copy the full SHA 09673a9View commit details
Commits on Jun 15, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 39af785 - Browse repository at this point
Copy the full SHA 39af785View commit details
Commits on Jul 24, 2017
-
Configuration menu - View commit details
-
Copy full SHA for b1d7ccc - Browse repository at this point
Copy the full SHA b1d7cccView commit details -
Calculate auth_scheme.toLowerCase() once
No need to do this for every request.
Configuration menu - View commit details
-
Copy full SHA for d127fd8 - Browse repository at this point
Copy the full SHA d127fd8View commit details -
Merge branch 'pr-118-case-insensitive-auth-scheme'
Make comparison of scheme in auth header case-insensitive Closes #118
Configuration menu - View commit details
-
Copy full SHA for c1dccf8 - Browse repository at this point
Copy the full SHA c1dccf8View commit details -
Merge branch 'master' of https://github.com/itayadler/passport-jwt in…
…to pr-113-jwtOptions
Configuration menu - View commit details
-
Copy full SHA for 4a7416c - Browse repository at this point
Copy the full SHA 4a7416cView commit details -
Merge branch 'pr-113-jwtOptions'
Added jsonWebTokenOptions to options, which allows one to pass additional options to node-jsonwebtoken verifier. This way there won't be a need to change passport-jwt for any other custom option used in the verifier. Closes #113
Configuration menu - View commit details
-
Copy full SHA for 98a7a09 - Browse repository at this point
Copy the full SHA 98a7a09View commit details
Commits on Jul 28, 2017
-
Merge branch 'secret-key-provider' of https://github.com/gpoole/passp…
…ort-jwt into pr108-secret-key-provider
Configuration menu - View commit details
-
Copy full SHA for b3846ef - Browse repository at this point
Copy the full SHA b3846efView commit details -
Moves the logic that calls secretOrKeyProvider out of verify_jwt.js and back into lib/strategy.js. verify_jwt.js was intended to be a simple call-through function for the real verfier from jsonwebtoken. Changes the signature of secretOrKeyProvider to (request, token, done) from (token, done) to support a wider range of use cases. Updates tests for the above behavior.
Configuration menu - View commit details
-
Copy full SHA for a236e40 - Browse repository at this point
Copy the full SHA a236e40View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1bb3d5b - Browse repository at this point
Copy the full SHA 1bb3d5bView commit details -
Configuration menu - View commit details
-
Copy full SHA for ef0cecd - Browse repository at this point
Copy the full SHA ef0cecdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 80e049c - Browse repository at this point
Copy the full SHA 80e049cView commit details
Commits on Aug 2, 2017
-
Get rid of JWT as the default auth scheme.
Per #87 'jwt' was not a great choice of default value for the authorization scheme since RFC6750 explicitly states that 'bearer' is the proper scheme, at least in the context of OAuth 2.0. Since this change breaks backwards compatibility I tried to be very explicit. extractors.fromAuthHeader() was removed and replaced with the more explicit 'extractors.fromAuthHeaderAsBearerToken()'. Anyone wanting to maintain passport-jwt 2.* behavior may use the follinwg extractor instead of fromAuthHeader(): extractors.fromAuthHeaderWithScheme('jwt') The legacy (v 1.*) extractor, extractors.versionOneCompatibilit() still iuses 'JWT' as the default auth scheme. Fixes #87
Configuration menu - View commit details
-
Copy full SHA for d5af311 - Browse repository at this point
Copy the full SHA d5af311View commit details
Commits on Aug 16, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 3a07c77 - Browse repository at this point
Copy the full SHA 3a07c77View commit details -
Merge branch 'pr108-secret-key-provider'
Adds ability for secretOrKey to be provided by a function called on every request
Configuration menu - View commit details
-
Copy full SHA for cfa4db3 - Browse repository at this point
Copy the full SHA cfa4db3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 28ffbb0 - Browse repository at this point
Copy the full SHA 28ffbb0View commit details
Commits on Oct 16, 2017
-
Configuration menu - View commit details
-
Copy full SHA for cfb13c0 - Browse repository at this point
Copy the full SHA cfb13c0View commit details
Commits on Oct 27, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 5fc1cd8 - Browse repository at this point
Copy the full SHA 5fc1cd8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3401015 - Browse repository at this point
Copy the full SHA 3401015View commit details -
Configuration menu - View commit details
-
Copy full SHA for f39b87f - Browse repository at this point
Copy the full SHA f39b87fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6d4b3fa - Browse repository at this point
Copy the full SHA 6d4b3faView commit details
Commits on Dec 26, 2017
-
Configuration menu - View commit details
-
Copy full SHA for d2d950e - Browse repository at this point
Copy the full SHA d2d950eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 685fffe - Browse repository at this point
Copy the full SHA 685fffeView commit details
Commits on Mar 13, 2018
-
Update jsonwebtoken dependency to latest.
Add package-lock.json as well.
Configuration menu - View commit details
-
Copy full SHA for 5497660 - Browse repository at this point
Copy the full SHA 5497660View commit details -
Configuration menu - View commit details
-
Copy full SHA for f381cea - Browse repository at this point
Copy the full SHA f381ceaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8f543a9 - Browse repository at this point
Copy the full SHA 8f543a9View commit details
There are no files selected for viewing