Laurent Nguyen
1bf4683894
Make Data Explorer work on node v18 ( #1654 )
...
* Upgrade packages to enable npm i with node 18
* Fix crypto and querystring issue
* Fix webpack errors during npm start
* Upgrade monaco editor. Fix alias in webconfig
* Remove deprecated file-loader. Upgrade webpack to latest.
* Fix format
* Upgrade webpack, eslint and typescript
* Update p-retry and fluentui packages
* Revert monaco package upgrade
* Fix notebook compile errors
* Fix lint errors
* Update jest snapshots
* Fix unit tests
* Update node version to 18
* Fix compile error
* Fix compile error
* Fix format
* Turn off warning overlay for webpack devServer
* Fix format
* Re-add monaco webpack plugin and upgrade monaco-editor
* Update package-lock.json
* Fix build issue
* Move MonacoWebpackPlugin to previous place in webpack.config.js
* update package-lock.json
* Fix package-lock.json
* Update package-lock.json
* Fix export ChoiceItem not found warning for self serve. Remove warning turn off in webpack config.
* Update checkout and setup actions in for ci tests
* Disable Gallery callout
* Fix disable gallery header
* Totally disable New gallery callout
* Upgrade all github actions to latest
2023-12-13 10:24:40 -08:00
Laurent Nguyen
90c1439d34
Update prettier to latest. Remove tslint ( #1641 )
...
* Rev up prettier
* Reformat
* Remove deprecated tslint
* Remove call to tslint and update package-lock.json
2023-10-03 17:13:24 +02:00
Srinath Narayanan
6b4d6f986e
added github test env client id ( #1168 )
2021-12-01 03:38:38 +05:30
Sunil Kumar Yadav
ff498b51e2
fixed eslint of Trigger.ts GithubOAuthService.ts etc ( #1126 )
2021-10-11 07:55:21 -07:00
Hardikkumar Nai
0bbf9de963
Resolve ESLint Errors ( #934 )
2021-07-15 08:53:07 -05:00
Tanuj Mittal
62b483d740
Fix connect to GitHub ( #937 )
2021-07-14 17:10:19 -05:00
Steve Faulkner
447db01647
TypeScript 4.3 ( #910 )
2021-06-24 19:14:26 -05:00
Steve Faulkner
bcc9f8dd32
Migrate remaining notification console methods to zustand ( #873 )
2021-06-09 15:11:12 -05:00
Hardikkumar Nai
8c05ac740c
Remove Explorer.databaseAccount ( #717 )
...
Co-authored-by: Steve Faulkner <southpolesteve@gmail.com>
2021-05-05 16:54:50 -05:00
Hardikkumar Nai
fdd12b41c4
Remove Explorer.defaultExperience ( #680 )
...
Co-authored-by: Steve Faulkner <southpolesteve@gmail.com>
2021-05-05 13:00:01 -05:00
Tanuj Mittal
e8b79d6260
Use postRobot to listen for GitHub OAuth messages ( #729 )
2021-04-27 22:22:52 +05:30
Jordi Bunster
e49bcc524f
Remove deprecated calls to logConsoleMessage ( #608 )
...
Co-authored-by: Steve Faulkner <southpolesteve@gmail.com>
2021-04-21 13:52:01 -05:00
Steve Faulkner
3cccbdfe81
Fix Lint errors in URLUtility ( #462 )
2021-03-18 22:19:35 -05:00
Steve Faulkner
4be53284b5
Prettier 2.0 ( #393 )
2021-01-20 09:15:01 -06:00
Steve Faulkner
2b2de7c645
Migrated Hosted Explorer to React ( #360 )
...
Co-authored-by: Victor Meng <vimeng@microsoft.com>
Co-authored-by: Steve Faulkner <stfaul@microsoft.com>
2021-01-19 16:31:55 -06:00
victor-meng
5f1f7a8266
Refactor error handling part 2 ( #313 )
2020-11-03 13:40:44 -08:00
victor-meng
5741802c25
refactor error handling part 1 ( #307 )
...
- created `getErrorMessage` function which takes in an error string or any type of error object and returns the correct error message
- replaced `error.message` with `getErrorMessage` since `error` could be a string in some cases
- merged sendNotificationForError.ts with ErrorHandlingUtils.ts
- some minor refactoring
In part 2, I will make the following changes:
- Make `Logger.logError` function take an error message string instead of an error object. This will reduce some redundancy where the `getErrorMessage` function is being called twice (the error object passed by the caller is already an error message).
- Update every `TelemetryProcessor.traceFailure` call to make sure we pass in an error message instead of an error object since we stringify the data we send.
2020-10-30 22:09:24 +00:00
victor-meng
24b5b754ca
Fix error handling in DE ( #294 )
...
- Replaced `JSON.stringify(error)` with `error.message`
- Created `ErrorHandlingUtils` and moved all error logging actions in there
2020-10-21 21:28:30 +00:00
Tanuj Mittal
5886db81e9
Copy To functionality for notebooks ( #141 )
...
* Add Copy To functionality for notebooks
* Fix formatting
* Fix linting errors
* Fixes
* Fix build failure
* Rebase and address feedback
* Increase test coverage
2020-08-11 09:27:57 -07:00
Steve Faulkner
0011007d5f
Refactor Global state into Context Files ( #128 )
2020-08-06 14:03:46 -05:00
Steve Faulkner
2904a1a60d
Move Delete Container call to use ARM when logged in with AAD ( #110 )
2020-08-03 17:11:07 -05:00
Steve Faulkner
fea321cd68
More ViewModel cleanup ( #116 )
2020-07-27 16:05:25 -05:00
Steve Faulkner
eab6506940
Remove Explorer Stub and ViewModel.Explorer ( #101 )
2020-07-20 12:59:40 -05:00
Tanuj Mittal
84ea3796ec
Remove enableGallery feature flag ( #68 )
...
* Remove enableGallery feature flag
* Fix bugs
* Add tests to increase coverage
* Move favorites functionality behind feature.enableGalleryPublish flag
* Show code cells in NotebookViewer
* Use cosmos db logo as persona image for sample notebook gallery cards
* Update gallery card snapshot to fix test
2020-07-06 12:10:26 -07:00
Tanuj Mittal
7512b3c1d5
Notebooks Gallery ( #59 )
...
* Initial commit
* Address PR comments
* Move notebook related stuff to NotebookManager and dynamically load it
* Add New gallery callout and other UI tweaks
* Update test snapshot
2020-06-30 11:47:21 -07:00
Steve Faulkner
269ea6a349
Add Additional Lint Rules ( #55 )
2020-06-23 10:45:51 -05:00
Tanuj Mittal
aa8236666e
Use graphql in GitHubClient and misc fixes ( #8 )
...
* Use graphql in GitHubClient
* Replace usage of Array.find with _.find
2020-06-05 12:22:41 -07:00
Tanuj Mittal
a6c44e0e69
Add support for changing GitHub OAuth permissions ( #4 )
2020-05-29 19:16:50 -07:00
Steve Faulkner
0494da4162
Update to ADO 5ed9b2130da7f822153531489d802c28986f5d30
2020-05-26 13:53:41 -05:00
Steve Faulkner
36581fb6d9
Initial Move from Azure DevOps to GitHub
2020-05-25 21:30:55 -05:00