You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,12 @@ ews-javascript-api
3
3
==================
4
4
# CHANGELOG
5
5
6
+
# Whats new v0.10.0
7
+
* new/fix: #324 Autodiscover is back again, improved and supports DNS fallback using Autodiscover SRV records
8
+
9
+
# Whats new v0.9.6
10
+
* fix: #316 fixed issue where Update Item operation was failing.
11
+
6
12
# Whats new v0.9.5
7
13
* fix: #276 You can now use `FolderId` with `uniqueId` string parameter
8
14
* fix: #300 fix issue with `LegacyfreeBusyStatus` serialization, this also fixes lots of other enum attribute failing to serialize/de-serialize properly.
Copy file name to clipboardExpand all lines: README.md
+6-8Lines changed: 6 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,9 +15,9 @@ You can now use this in Ionic, Cordova, Browser based process (where CORS is dis
15
15
# Current State:
16
16
* Almost all methods in ExchangeService class is comple with respect to c# counterpart ([based on commit#31951f4 ](https://github.com/OfficeDev/ews-managed-api/commit/31951f456519786e41232fa9ff6a3ab20b56cac3)
17
17
* some method skipped as they are not for client side code or are diaognostic methods.
18
-
* Roadmap to Beta:
18
+
* Roadmap to 1.0 Beta:
19
19
*~ReWrite XHR/Request and Promise see #94~ done
20
-
* Rewrite Autodiscover code with fresh Promise approach, this code was my work in very beginning and poorly written, strategy and TypeScript features improved over time which this code isnt taking any advantage of.
20
+
*~Rewrite Autodiscover code with fresh Promise approach, this code was my work in very beginning and poorly written, strategy and TypeScript features improved over time which this code isnt taking any advantage of.~
21
21
* Add jsdoc comment to remaining exported class
22
22
* Roadmap to 1.0
23
23
* fix bugs from Beta
@@ -38,10 +38,8 @@ You can now use this in Ionic, Cordova, Browser based process (where CORS is dis
* fix: #276 You can now use `FolderId` with `uniqueId` string parameter
43
-
* fix: #300 fix issue with `LegacyfreeBusyStatus` serialization, this also fixes lots of other enum attribute failing to serialize/de-serialize properly.
44
-
* fix - general: better detection of enum value in if condition for a value. default enum value of 0 is neglected earlier.
41
+
# Whats new v0.10.0 (in progress)
42
+
* new/fix: #324 Autodiscover is back again, improved and supports DNS fallback using Autodiscover SRV records
45
43
46
44
[See older change in CHANGELOG.md](./CHANGELOG.md)
47
45
@@ -95,15 +93,15 @@ var exch = new ews.ExchangeService(ews.ExchangeVersion.Exchange2013);
var exch =newExchangeService(ExchangeVersion.Exchange2013);
97
95
```
98
-
## Autodiscover user settings (**not working anymore, needs rewrite)
96
+
## Autodiscover user settings (**Working again as of 0.10 **)
99
97
```javascript
100
98
//import ews module
101
99
var ews =require('ews-javascript-api');
102
100
//create AutodiscoverService object
103
101
var autod =newews.AutodiscoverService(newews.Uri("https://autodiscover-s.outlook.com/autodiscover/autodiscover.svc"), ews.ExchangeVersion.Exchange2010);
104
102
//you can omit url and it will autodiscover the url, version helps throw error on client side for unsupported operations.example - //var autod = new ews.AutodiscoverService(ews.ExchangeVersion.Exchange2010);
0 commit comments