Skip to content

Commit e841869

Browse files
authored
Merge pull request #332 from gautamsi/fix/v0.10
update readme for 0.10
2 parents 00bada8 + c8959cc commit e841869

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

README.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@ You can now use this in Ionic, Cordova, Browser based process (where CORS is dis
1616
* 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)
1717
* some method skipped as they are not for client side code or are diaognostic methods.
1818
* Roadmap to 1.0 Beta:
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.~
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 isn't taking any advantage of.~~ done
21+
* use `async/await` and move to `@ewsjs/*` namespace
22+
* chain `@ewsjs/xhr` to wrap all exports from `@ewsjs/ews`
2123
* Add jsdoc comment to remaining exported class
2224
* Roadmap to 1.0
2325
* fix bugs from Beta
@@ -38,8 +40,15 @@ You can now use this in Ionic, Cordova, Browser based process (where CORS is dis
3840

3941
===========================================================================================
4042

41-
# Whats new v0.10.0 (in progress)
43+
# Whats new v0.10.0
4244
* new/fix: #324 Autodiscover is back again, improved and supports DNS fallback using Autodiscover SRV records
45+
* new: #320 Allow access to `HttpResponseHeaders`, you can use `<ExchangeService Instance>.HttpResponseHeaders` to get fresh header from last call to ews service.
46+
* you can also add a delegate (callback) for `<ExchangeService Instance>.OnResponseHeadersCaptured` which is called after each call to service and when headers are returned.
47+
48+
* **Breaking Changes**: `<ExchangeService>.HttpHeaders` is now Disctionary instance, compatible with c# disctionary. you can no longer do `service.HttpHeaders[<header>] = value`. do this instead `service.HttpHeaders.Add("header", "value"); `
49+
50+
* fix: #322 you can now delete tasks properly
51+
4352

4453
[See older change in CHANGELOG.md](./CHANGELOG.md)
4554

0 commit comments

Comments
 (0)