@@ -6,8 +6,21 @@ Alfresco JS API
66
77_ This project provides a JavaScript client API into the v1 Alfresco REST API_
88
9- <a name =" 0.3.2 " ></a >
10- # [ 0.3.3] ( https://github.com/Alfresco/alfresco-js-api/releases/tag/0.3.2 ) (2016-09-26)
9+ <a name =" 0.3.5 " ></a >
10+ # [ 0.3.5] ( https://github.com/Alfresco/alfresco-js-api/releases/tag/0.3.5 ) (2016-xx-xx)
11+
12+ ## Fix
13+ - [ Library no longer works with ECM] ( https://github.com/Alfresco/alfresco-js-api/issues/63 )
14+ - [ Flag to enable/disable CSRF behaviour] ( https://github.com/Alfresco/alfresco-js-api/issues/62 )
15+
16+ <a name =" 0.3.4 " ></a >
17+ # [ 0.3.4] ( https://github.com/Alfresco/alfresco-js-api/releases/tag/0.3.4 ) (2016-xx-xx)
18+
19+ ## Fix
20+ - [ csrf token for activiti doesn't work with Node.js] ( https://github.com/Alfresco/alfresco-js-api/issues/61 )
21+
22+ <a name =" 0.3.3 " ></a >
23+ # [ 0.3.3] ( https://github.com/Alfresco/alfresco-js-api/releases/tag/0.3.3 ) (2016-xx-xx)
1124
1225## Fix
1326- [ Add csrf token for activiti] ( https://github.com/Alfresco/alfresco-js-api/issues/59 )
@@ -17,7 +30,7 @@ _This project provides a JavaScript client API into the v1 Alfresco REST API_
1730- Various improvements for TypeScript declaration files
1831
1932<a name =" 0.3.2 " ></a >
20- # [ 0.3.2] ( https://github.com/Alfresco/alfresco-js-api/releases/tag/0.3.2 ) (2016-09-21 )
33+ # [ 0.3.2] ( https://github.com/Alfresco/alfresco-js-api/releases/tag/0.3.2 ) (2016-xx-xx )
2134
2235## Fix
2336- [ Null date fields parsed as invalid dates] ( https://github.com/Alfresco/alfresco-js-api/issues/50 )
@@ -29,7 +42,7 @@ _This project provides a JavaScript client API into the v1 Alfresco REST API_
2942- Various improvements for TypeScript declaration files
3043
3144<a name =" 0.3.1 " ></a >
32- # [ 0.3.1] ( https://github.com/Alfresco/alfresco-js-api/releases/tag/0.3.1 ) (2016-08-29 )
45+ # [ 0.3.1] ( https://github.com/Alfresco/alfresco-js-api/releases/tag/0.3.1 ) (2016-xx-xx )
3346
3447## Fix
3548- [ Date parser error with Safari] ( https://github.com/Alfresco/alfresco-js-api/issues/43 )
@@ -72,14 +85,14 @@ Separation between constructor and login phase, decoupling login from constructo
7285Before:
7386
7487``` javascript
75- this .alfrescoJsApi = new AlfrescoApi ({username, password, host , contextRoot, ticket});
88+ this .alfrescoJsApi = new AlfrescoApi ({username, password, alfrescoHost , contextRoot, ticket});
7689this .alfrescoJsApi .login ();
7790```
7891
7992After:
8093
8194``` javascript
82- this .alfrescoJsApi = new AlfrescoApi ({hostECM, hostBPM, contextRoot, ticketEcm, ticketBpm });
95+ this .alfrescoJsApi = new AlfrescoApi ({hostECM, hostBPM, contextRoot, ticket });
8396this .alfrescoJsApi .login (username, password);
8497```
8598
@@ -110,27 +123,6 @@ After:
110123 var bpmTicket = this .alfrescoJsApi .getTicketBpm ();
111124```
112125
113- - Login ticket using constructor
114-
115- Before:
116-
117- ``` javascript
118- this .alfrescoJsApi = new AlfrescoApi ({ host : ' ' http: // 127.0.0.1:8080', ticket :'TICKET_4479f4d3bb155195879bfbb8d5206f433488a1b1'});
119- ` ` `
120-
121- After:
122-
123- ` ` ` javascript
124-
125- // Login ticket ECM
126- this .alfrescoJsApi = new AlfrescoApi ({ ticketEcm: ' TICKET_4479f4d3bb155195879bfbb8d5206f433488a1b1' , hostEcm: ' http://127.0.0.1:8080' });
127-
128- // Login ticket BPM
129- this .alfrescoJsApi = new AlfrescoApi ({ ticketBpm: ' Basic YWRtaW46YWRtaW4=' , hostBpm: ' http://127.0.0.1:9999' });
130-
131- // Login ticket ECM and BPM
132- this .alfrescoJsApi = new AlfrescoApi ({ ticketEcm: ' TICKET_4479f4d3bb155195879bfbb8d5206f433488a1b1' , ticketBpm: ' Basic YWRtaW46YWRtaW4=' , hostEcm: ' http://127.0.0.1:8080' , hostBpm: ' http://127.0.0.1:9999' });
133- ` ` `
134126
135127<a name =" 0.2.2 " ></a >
136128# [ 0.2.2] ( https://github.com/Alfresco/alfresco-js-api/releases/tag/0.2.2 ) (2016-07-21)
0 commit comments