-
Notifications
You must be signed in to change notification settings - Fork 232
Version 2.0.0 #179
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
Merged
Merged
Version 2.0.0 #179
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
d274967
Changes:
muthurathinam-m 454c0a3
Updated readme with installation guide
muthurathinam-m 4b1406b
Changes:
muthurathinam-m da2c5e3
Added tests for middleware util append request header method
muthurathinam-m ee554ad
Upgraded to msal 1.0.0 and made corresponding changes (breaking chang…
muthurathinam-m edd80e4
fix readme typo
muthurathinam-m fe087b7
Merge remote-tracking branch 'origin/dev' into v2.0.0
muthurathinam-m 10217b1
Bug Fixes:
muthurathinam-m ad564db
Merge remote-tracking branch 'origin/dev' into v2.0.0
muthurathinam-m 47093b1
Renamed MSALAuthenticationProvider and MSALAuthenticationProviderOpti…
muthurathinam-m 7cbe481
Update README.md
muthurathinam 10df55f
Update README.md
muthurathinam c2cb47a
Removing unnecessary dependencies
muthurathinam-m 418c2a2
Merge branch 'v2.0.0' of https://github.com/microsoftgraph/msgraph-sd…
muthurathinam-m b3a2713
Update README.md
muthurathinam 1f860b1
Update README.md
muthurathinam 930a96c
Update README.md
muthurathinam fe07204
Renaming ImplicitMSALAuthenticationProviderOptions to MSALAuthenticat…
muthurathinam-m 159e1c4
Merge branch 'v2.0.0' of https://github.com/microsoftgraph/msgraph-sd…
muthurathinam-m e90f4f8
Added babel polyfill in readme
muthurathinam-m 5803f2c
Bump version with 2.0.0-Preview.1
muthurathinam-m 441cfa0
Auto generation of version file and fix review comments
muthurathinam-m 9714304
2.0.0-Preview.0
muthurathinam-m 01d698c
Picking correct preview version
muthurathinam-m e7c7f01
Precommit hook will now add generated Version.ts file to commit
muthurathinam-m 0d30e21
Fix CI build error in gulpfile.js: async funcitons are not supported …
muthurathinam-m 700e2be
Merge branch 'dev' into v2.0.0
muthurathinam 93680f8
Merge branch 'dev' into v2.0.0
muthurathinam 032f559
Renamed msalInstance as msalApplication
muthurathinam-m File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| { | ||
| "hooks": { | ||
| "pre-commit": "lint-staged && npm run lint && npm run test" | ||
| "pre-commit": "npm run pre-build && git add src/Version.ts && lint-staged && npm run lint && npm run test" | ||
| } | ||
| } |
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| module.exports = function(api) { | ||
| api.cache(true); | ||
| const presets = [ | ||
| [ | ||
| "@babel/preset-env", | ||
| { | ||
| targets: { | ||
| ie: 11, | ||
| }, | ||
| }, | ||
| ], | ||
| ]; | ||
|
|
||
| const plugins = [ | ||
| [ | ||
| "@babel/plugin-transform-runtime", | ||
| { | ||
| absoluteRuntime: false, | ||
| corejs: false, | ||
| helpers: true, | ||
| regenerator: true, | ||
| useESModules: false, | ||
| }, | ||
| ], | ||
| ]; | ||
| return { | ||
| presets, | ||
| plugins, | ||
| }; | ||
| }; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| const { series } = require("gulp"); | ||
|
|
||
| const licenseStr = `/** | ||
| * ------------------------------------------------------------------------------------------- | ||
| * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. | ||
| * See License in the project root for license information. | ||
| * ------------------------------------------------------------------------------------------- | ||
| */ | ||
| `; | ||
|
|
||
| const moduleHeader = `/** | ||
| * @module Version | ||
| */ | ||
| `; | ||
|
|
||
| const versionFile = `${licenseStr} | ||
| // THIS FILE IS AUTO GENERATED | ||
| // ANY CHANGES WILL BE LOST DURING BUILD | ||
|
|
||
| ${moduleHeader} | ||
| export const PACKAGE_VERSION = "[VERSION]"; | ||
| `; | ||
|
|
||
| function setVersion(cb) { | ||
| var pkg = require("./package.json"); | ||
| var fs = require("fs"); | ||
| fs.writeFileSync("src/Version.ts", versionFile.replace("[VERSION]", pkg.version)); | ||
| cb(); | ||
| } | ||
|
|
||
| exports.setVersion = setVersion; |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.