Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
gautamsi committed Mar 9, 2023
1 parent 4d32b80 commit 9488cdf
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 11 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ Contact @gautamsi for support. Use [![Gitter](https://badges.gitter.im/gautamsi/
## Office 365 OAuth Support is built in
see demo repo /~https://github.com/ewsjs/oauth-demo which has working example - /~https://github.com/ewsjs/oauth-demo/blob/main/examples/msal-node-samples/auth-code/index.js to find out how to use oAuth Token from msal.

## March 2023 Update:
fixes and typing cleanups, see 0.12.0 below

## July 2019 Update:
You can now use this in Ionic, Cordova, Browser based process (where CORS is disabled), Outlook Add-in or Mail apps. see [`ews-js-api-browser`](/~https://github.com/gautamsi/ews-js-api-browser) for more detail

Expand Down Expand Up @@ -42,6 +45,17 @@ You can now use this in Ionic, Cordova, Browser based process (where CORS is dis

===========================================================================================

# Whats new v0.12.0
* fixed `WellKnownFolderNames` to be `StringPropertyDefinition` type instead of `Generic` which microsoft has changed long back. Part of this was fixed by #414 (thanks @klinki)
* fixes #416 and also cleans up other typing issues
* Security update: updated all dependency to latest version.


# Whats new v0.11.0
* **BREAKING** dependencies upgraded to latest version of commonjs module (still avoiding pure esm modules). The code is now compiled to es6 target, must use nodejs version >= 10
* Security update: updated all dependency to latest version.


# Whats new v0.10.0
* new/fix: #324 Autodiscover is back again, improved and supports DNS fallback using Autodiscover SRV records
* new: #320 Allow access to `HttpResponseHeaders`, you can use `<ExchangeService Instance>.HttpResponseHeaders` to get fresh header from last call to ews service.
Expand Down
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ews-javascript-api",
"version": "0.11.0",
"version": "0.12.0",
"description": "EWS Managed api in JavaScript",
"main": "js/ExchangeWebService.js",
"scripts": {
Expand Down Expand Up @@ -28,8 +28,8 @@
"dependencies": {
"@xmldom/xmldom": "^0.8.1",
"base64-js": "^1.5.1",
"moment": "^2.29.1",
"moment-timezone": "^0.5.34",
"moment": "^2.29.4",
"moment-timezone": "^0.5.41",
"uuid": "^8.3.2"
},
"optionalDependencies": {
Expand Down

0 comments on commit 9488cdf

Please sign in to comment.