-
Notifications
You must be signed in to change notification settings - Fork 7
/
changelog.json
63 lines (63 loc) · 3.04 KB
/
changelog.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"_readme": [
"The contents of this file are used to generate CHANGELOG.md; It's kept in JSON/parsable format to make it",
"possible to generate change-logs in other formats as well (when needed) and to do automatic releases based on",
"added change-log records. More on how to use it: https://github.com/vaimo/composer-changelogs"
],
"2.2.4": {
"fix": [
"allow the plugin to be installed as dependency to globally installed package; previously caused every composer call to crash with class declaration conflict",
"don't download the web-drivers for every project when plugin installed globally"
]
},
"2.2.3": {
"fix": [
"due to the fact that download target folder was tucked away in Composer cache, odd errors and false failures were prone to happen on systems where Composer cache was shared between multiple parallel runs; change: now downloading into the config owner package (that provides download links, etc)"
]
},
"2.2.2": {
"fix": [
"make downloader failure reties to be done after regular intervals (set to 2 seconds) to alleviate issues with clashes on cache cleanup",
"increase downloader failure retries to 5 (used to be 2)",
"parallel runs of the download for certain driver always use unique tmp paths for downloaded package (random value introduced into the generation of the cache path)"
]
},
"2.2.1": {
"fix": [
"version polling did not result in console log output in some cases where executable was not found at all"
]
},
"2.2.0": {
"feature": [
"output polling command and raw result when running Composer with -vvv"
],
"fix": [
"remote version polling result not validated to be a valid constraint"
]
},
"2.1.0": {
"feature": [
"allow multiple version checking url's to cater for download sources that might have different mechanisms for fetching information about latest driver versions",
"new path variables for having partial version in file names: major (X), major-minor (X.Y)",
"retry driver download when download failed for some reason (2 retries)"
],
"maintenance": [
"introduced the use of Static Code Analysis tools",
"code downgraded so to make the package installable on relatively old php versions"
]
},
"2.0.0": {
"breaking": [
"(config) version polling output parser switched to use RegEx pattern matching instead of relying on sscanf"
],
"feature": [
"allow driver version polling to use version aliases (required for some drivers that use multiple versioning schemes (like EdgeDriver))",
"try version polling with escaped path on Windows if normal call results in blank response"
]
},
"1.0.0": {
"feature": [
"allow webdriver binary download based on passed-in configuration"
]
}
}