forked from thecodingmachine/nodejs-installer
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathchangelog.json
46 lines (46 loc) · 2.22 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
{
"_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"
],
"4.0.1": {
"fix": [
"allow the plugin to be installed as dependency to globally installed package (as part of dependency of some global package); previously caused every composer call to crash with class declaration conflict",
"removed class reference to dependency that is not listed (and should not be) as dependency"
]
},
"4.0.0": {
"breaking": [
"behaviour: the default behaviour of the package is to install local version of the node even when global available; Flag 'forceLocal' renamed to 'useGlobal', defaults to FALSE"
]
},
"3.0.0": {
"breaking": [
"code: removed Windows support (currently not needed)",
"configuration: download path no longer configurable (will always be downloaded to a sub-folder of the package and binary script made to point to it)"
],
"feature": [
"switched over to using Composer downloader through creating virtual package for the NodeJs",
"no longer downloading nodejs under it's own vendor namespace: rather using a sub-folder within the plugin (as it fully owns the download)"
]
},
"2.0.1": {
"fix": [
"make sure that no errors are encountered when plugin gets uninstalled"
],
"maintenance": [
"code re-organized",
"all logic that relied on classes to be in certain depth of directory structure removed"
]
},
"2.0.0": {
"breaking": [
"event sequence changed where nodejs observers are triggered very early to allow other plugins that rely on nodejs to be installed to work correctly"
],
"maintenance": [
"code styling fixes",
"introduced static code analysis with compatibility ruleset (to make sure that hte plugin works with php5.3)"
]
}
}