From 95987f4acac9ffd224e7ddebb7d987cd002e1a78 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Fri, 10 Mar 2017 09:27:24 +0100 Subject: [PATCH 1/2] Do not validate URLs properly in json schema, fixes #6243 --- res/composer-schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/composer-schema.json b/res/composer-schema.json index 8bfa12356..458f446c2 100644 --- a/res/composer-schema.json +++ b/res/composer-schema.json @@ -588,7 +588,7 @@ "required": ["type", "url"], "properties": { "type": { "type": "string", "enum": ["composer"] }, - "url": { "type": "string", "format": "uri" }, + "url": { "type": "string" }, "options": { "type": "object", "additionalProperties": true @@ -645,7 +645,7 @@ "required": ["type", "url"], "properties": { "type": { "type": "string", "enum": ["pear"] }, - "url": { "type": "string", "format": "uri" }, + "url": { "type": "string" }, "vendor-alias": { "type": "string" } } }, From 203eb6014cbd154e7a0f44e423537af045c7d0e8 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Fri, 10 Mar 2017 09:29:35 +0100 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 29e09e9ad..4dbbaf154 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +### [1.4.1] - 2017-03-10 + + * Fixed `apcu-autoloader` config option being ignored in `dump-autoload` command + * Fixed json validation not allowing boolean for trunk-path, branches-path and tags-path in svn repos + * Fixed json validation not allowing repository URLs without scheme + ### [1.4.0] - 2017-03-08 * Improved memory usage of dependency solver