Merge branch '1.5'
commit
0bc7199bdb
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -1,3 +1,13 @@
|
|||
### [1.5.2] - 2017-09-11
|
||||
|
||||
* Fixed GitLabDriver looping endlessly in some conditions
|
||||
* Fixed GitLabDriver support for unauthenticated requests
|
||||
* Fixed GitLab zip downloads not triggering credentials prompt if unauthenticated
|
||||
* Fixed path repository support of COMPOSER_ROOT_VERSION, it now applies to all path repos within the same git repository
|
||||
* Fixed path repository handling of copies to avoid copying VCS files and others
|
||||
* Fixed sub-directory call to ignore list and create-project commands as well as calls to Composer using --working-dir
|
||||
* Fixed invalid warning appearing when calling `remove` on an non-stable package
|
||||
|
||||
### [1.5.1] - 2017-08-09
|
||||
|
||||
* Fixed regression in GitLabDriver with repos containing >100 branches or tags
|
||||
|
@ -557,6 +567,7 @@
|
|||
|
||||
* Initial release
|
||||
|
||||
[1.5.2]: https://github.com/composer/composer/compare/1.5.1...1.5.2
|
||||
[1.5.1]: https://github.com/composer/composer/compare/1.5.0...1.5.1
|
||||
[1.5.0]: https://github.com/composer/composer/compare/1.4.3...1.5.0
|
||||
[1.4.3]: https://github.com/composer/composer/compare/1.4.2...1.4.3
|
||||
|
|
|
@ -8,16 +8,16 @@
|
|||
"packages": [
|
||||
{
|
||||
"name": "composer/ca-bundle",
|
||||
"version": "1.0.7",
|
||||
"version": "1.0.8",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/composer/ca-bundle.git",
|
||||
"reference": "b17e6153cb7f33c7e44eb59578dc12eee5dc8e12"
|
||||
"reference": "9dd73a03951357922d8aee6cc084500de93e2343"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/composer/ca-bundle/zipball/b17e6153cb7f33c7e44eb59578dc12eee5dc8e12",
|
||||
"reference": "b17e6153cb7f33c7e44eb59578dc12eee5dc8e12",
|
||||
"url": "https://api.github.com/repos/composer/ca-bundle/zipball/9dd73a03951357922d8aee6cc084500de93e2343",
|
||||
"reference": "9dd73a03951357922d8aee6cc084500de93e2343",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
|
@ -63,7 +63,7 @@
|
|||
"ssl",
|
||||
"tls"
|
||||
],
|
||||
"time": "2017-03-06T11:59:08+00:00"
|
||||
"time": "2017-09-11T07:24:36+00:00"
|
||||
},
|
||||
{
|
||||
"name": "composer/semver",
|
||||
|
|
Loading…
Reference in New Issue