From 9488cdf389f16a7daa8a17299ab195a487b9b30f Mon Sep 17 00:00:00 2001 From: Gautam Singh <5769869+gautamsi@users.noreply.github.com> Date: Thu, 9 Mar 2023 03:32:49 -0800 Subject: [PATCH] update version --- README.md | 14 ++++++++++++++ package-lock.json | 16 ++++++++-------- package.json | 6 +++--- 3 files changed, 25 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 4c33fadd..a6192463 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 `.HttpResponseHeaders` to get fresh header from last call to ews service. diff --git a/package-lock.json b/package-lock.json index 8eab2f5c..8edb483d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11,8 +11,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" }, "devDependencies": { @@ -1091,9 +1091,9 @@ } }, "node_modules/minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { "brace-expansion": "^1.1.7" @@ -2720,9 +2720,9 @@ "dev": true }, "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "requires": { "brace-expansion": "^1.1.7" diff --git a/package.json b/package.json index 989ce092..c2a6f4b4 100644 --- a/package.json +++ b/package.json @@ -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": { @@ -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": {