Update dependencies

This commit is contained in:
Raimund Schlüßler 2016-02-28 16:15:35 +01:00
parent 58386c1e55
commit 5876ae5ba1
7 changed files with 83 additions and 15 deletions

View file

@ -1,6 +1,6 @@
{
"name": "ui-select",
"version": "0.14.2",
"version": "0.14.9",
"homepage": "https://github.com/angular-ui/ui-select",
"authors": [
"AngularUI"
@ -29,11 +29,11 @@
"angular-sanitize": ">=1.2.18",
"angular-mocks": ">=1.2.18"
},
"_release": "0.14.2",
"_release": "0.14.9",
"_resolution": {
"type": "version",
"tag": "v0.14.2",
"commit": "4349bb465f4cfe53963b5f9d434e0ae5a3845047"
"tag": "v0.14.9",
"commit": "30992780d13b29b77fefa459839467cafa617fda"
},
"_source": "https://github.com/angular-ui/ui-select.git",
"_target": "*",

View file

@ -1,3 +1,68 @@
<a name="0.14.8"></a>
## [0.14.8](https://github.com/angular-ui/ui-select/compare/v0.14.8...v0.14.8) (2016-02-18)
<a name="0.14.7"></a>
## [0.14.7](https://github.com/angular-ui/ui-select/compare/v0.14.7...v0.14.7) (2016-02-18)
### Bug Fixes
* **IE:** selects not working on IE8 ([ee65677](https://github.com/angular-ui/ui-select/commit/ee65677)), closes [#158](https://github.com/angular-ui/ui-select/issues/158)
<a name="0.14.6"></a>
## [0.14.6](https://github.com/angular-ui/ui-select/compare/v0.14.6...v0.14.6) (2016-02-18)
### Bug Fixes
* **paste:** add paste support ([1ad6f60](https://github.com/angular-ui/ui-select/commit/1ad6f60)), closes [#910](https://github.com/angular-ui/ui-select/issues/910) [#704](https://github.com/angular-ui/ui-select/issues/704) [#789](https://github.com/angular-ui/ui-select/issues/789) [#848](https://github.com/angular-ui/ui-select/issues/848) [#429](https://github.com/angular-ui/ui-select/issues/429)
* **uiSelectSort:** fix dependency not found error ([a5a6554](https://github.com/angular-ui/ui-select/commit/a5a6554))
<a name="0.14.5"></a>
## [0.14.5](https://github.com/angular-ui/ui-select/compare/v0.14.5...v0.14.5) (2016-02-18)
### Bug Fixes
* **uiSelectMultipleDirective:** fix track by error ([ced1cc0](https://github.com/angular-ui/ui-select/commit/ced1cc0)), closes [#1343](https://github.com/angular-ui/ui-select/issues/1343)
<a name="0.14.4"></a>
## [0.14.4](https://github.com/angular-ui/ui-select/compare/v0.14.4...v0.14.4) (2016-02-18)
### Bug Fixes
* Allow setting a ngClass on <ui-select> element ([6a99b08](https://github.com/angular-ui/ui-select/commit/6a99b08)), closes [#277](https://github.com/angular-ui/ui-select/issues/277)
<a name="0.14.3"></a>
## [0.14.3](https://github.com/angular-ui/ui-select/compare/v0.14.3...v0.14.3) (2016-02-18)
<a name="0.14.2"></a>
## [0.14.2](https://github.com/angular-ui/ui-select/compare/v0.14.2...v0.14.2) (2016-02-18)
### Bug Fixes
* make compatible with Angular 1.5 and non-cached templates ([0e85670](https://github.com/angular-ui/ui-select/commit/0e85670)), closes [#1422](https://github.com/angular-ui/ui-select/issues/1422) [#1356](https://github.com/angular-ui/ui-select/issues/1356) [#1325](https://github.com/angular-ui/ui-select/issues/1325) [#1239](https://github.com/angular-ui/ui-select/issues/1239)
* **commonjs:** remove CSS require ([81b0f03](https://github.com/angular-ui/ui-select/commit/81b0f03))
* **track by:** fix "track by" ([6c52e41](https://github.com/angular-ui/ui-select/commit/6c52e41)), closes [#806](https://github.com/angular-ui/ui-select/issues/806) [#665](https://github.com/angular-ui/ui-select/issues/665)
<a name="0.14.2"></a>
## [0.14.2](https://github.com/angular-ui/ui-select/compare/v0.14.1...v0.14.2) (2016-01-28)

View file

@ -1,4 +1,4 @@
We are excited to have you working on the project and coordially request that you follow the Guidelines:
We are excited to have you working on the project and cordially request that you follow the Guidelines:
- [Code Style Guidelines](#rules)
- [Commit Message Guidelines](#commit)

View file

@ -1,3 +1,2 @@
require('./dist/select.css');
require('./dist/select.js');
module.exports = 'ui.select';

View file

@ -6,7 +6,8 @@
"repository": {
"url": "git://github.com/angular-ui/ui-select.git"
},
"version": "0.14.2",
"style": "dist/select.css",
"version": "0.14.9",
"devDependencies": {
"bower": "~1.3",
"conventional-changelog": "^0.5.3",

View file

@ -19,11 +19,11 @@
"test",
"tests"
],
"_release": "8ccf8df2a2",
"_release": "aac08f74e8",
"_resolution": {
"type": "branch",
"branch": "master",
"commit": "8ccf8df2a2eccf7a1e885f88c95517a2e3687bb3"
"commit": "aac08f74e8d10fdf17cdfb9ee4edd205b9363f74"
},
"_source": "https://github.com/evert/davclient.js.git",
"_target": "*",

View file

@ -40,18 +40,19 @@ dav.Client.prototype = {
*
* @param {string} url Url to do the propfind request on
* @param {Array} properties List of properties to retrieve.
* @param {Object} [headers] headers
* @return {Promise}
*/
propFind : function(url, properties, depth) {
propFind : function(url, properties, depth, headers) {
if(typeof depth == "undefined") {
depth = 0;
}
var headers = {
Depth : depth,
'Content-Type' : 'application/xml; charset=utf-8'
};
headers = headers || {};
headers['Depth'] = depth;
headers['Content-Type'] = 'application/xml; charset=utf-8';
var body =
'<?xml version="1.0"?>\n' +
@ -103,6 +104,7 @@ dav.Client.prototype = {
*
* @param {string} url Url to do the proppatch request on
* @param {Array} properties List of properties to store.
* @param {Object} [headers] headers
* @return {Promise}
*/
propPatch : function(url, properties, headers) {
@ -162,7 +164,8 @@ dav.Client.prototype = {
var self = this;
var xhr = this.xhrProvider();
headers = headers || {};
if (this.userName) {
headers['Authorization'] = 'Basic ' + btoa(this.userName + ':' + this.password);
// xhr.open(method, this.resolveUrl(url), true, this.userName, this.password);