Releases: seanfisher/passport-microsoft
Releases · seanfisher/passport-microsoft
v2.1.0
What's Changed
- Added api entry point option for customizing the base URI by @leeyuky9802 in #41
- (docs) Update Developer Applications page in README by @pselle in #21
- Bump express from 4.19.1 to 4.19.2 in /example/login by @dependabot in #40
New Contributors
- @pselle made their first contribution in #21
- @dependabot made their first contribution in #40
- @leeyuky9802 made their first contribution in #41
Full Changelog: v2.0.0...v2.1.0
v2.0.0
Added
- The User Principal Name (UPN) is now added onto a custom profile field called
userPrincipalName
Changed
- [BREAKING] Treating the User Principal Name (UPN) as an email address is now opt-in functionality. To maintain existing behavior, set the
addUPNAsEmail
option totrue
when configuring the strategy. - The
emails
array in the user profile can now contain zero or multiple email addresses
Updates by @seanfisher in #37
Full Changelog: v1.1.0...v2.0.0
v1.1.0
What's Changed
- removed pkginfo depedency to allow bundling by @joelklint in #27
- add graphApiVersion option by @Lordfirespeed in #30
- Add eslint and editorconfig for a little bit more standardization by @seanfisher in #19
- bump dependencies by @seanfisher in #33 and #34
- Minor: add raw profile dump and tenant option to example app by @seanfisher in #35
- v1.1.0 documentation by @seanfisher in #36
New Contributors
- @joelklint made their first contribution in #27
- @Lordfirespeed made their first contribution in #30
Full Changelog: v1.0.0...v1.1.0
v1.0.0
The API/design is stable enough that this is marked as the 1.0.0 release.
Added
- VS Code
launch.json
for example app - New
prompt
,login_hint
,domain_hint
,locale
, anddisplay
authorization parameters (See #8 and #18), thanks to @rachaelsingleton - Support for a
tenant
configuration option (See #17) - Documentation updates:
- README updates for configuration options
- Changelog
Changed
- Use npm instead of yarn for tracking dependencies
- Upgraded dependencies of main library
- Upgraded dependencies of example application, including from Express 3.x to 4.x
Security
- Upgraded dependencies to address https://nvd.nist.gov/vuln/detail/CVE-2021-415 by @derekwheel