Skip to content

Commit 38b0445

Browse files
author
Allan Paiste
committed
add changelog and lock
1 parent 088063f commit 38b0445

File tree

2 files changed

+266
-0
lines changed

2 files changed

+266
-0
lines changed

CHANGELOG.md

Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
# Changelog
2+
3+
_This file has been auto-generated from the contents of changelog.json_
4+
5+
## 1.6.0
6+
7+
### Feature
8+
9+
* allow glob patterns in repository path definitions to support deeper/grouped repository setups
10+
11+
Links: [src](https://github.com/vaimo/composer-repository-bundle/tree/1.6.0) [diff](https://github.com/vaimo/composer-repository-bundle/compare/1.5.0...1.6.0)
12+
13+
## 1.5.0 (2019-02-11)
14+
15+
### Feature
16+
17+
* allow forcing a bundle source to be installed with mirroring (instead of local bundles always ending up as sym-linked entities)
18+
19+
### Fix
20+
21+
* do not keep re-installing sym-linked modules on file changes (skip the md5 calculation for file contents)
22+
23+
Links: [src](https://github.com/vaimo/composer-repository-bundle/tree/1.5.0) [diff](https://github.com/vaimo/composer-repository-bundle/compare/1.4.3...1.5.0)
24+
25+
## 1.4.3 (2018-09-02)
26+
27+
### Fix
28+
29+
* make the module compatible with 5.3
30+
31+
### Maintenance
32+
33+
* introduced change-logs plugin dev dependency
34+
35+
Links: [src](https://github.com/vaimo/composer-repository-bundle/tree/1.4.3) [diff](https://github.com/vaimo/composer-repository-bundle/compare/1.4.2...1.4.3)
36+
37+
## 1.4.2 (2018-09-02)
38+
39+
### Fix
40+
41+
* allow the plugin to be uninstalled without a crash
42+
* absolute paths in composer.lock cause issues on clean install
43+
44+
Links: [src](https://github.com/vaimo/composer-repository-bundle/tree/1.4.2) [diff](https://github.com/vaimo/composer-repository-bundle/compare/1.4.1...1.4.2)
45+
46+
## 1.4.1 (2018-08-09)
47+
48+
### Fix
49+
50+
* prevent a crash when accessing composer from non-cli environments due to accessing argv on the moment of plugin activation
51+
52+
Links: [src](https://github.com/vaimo/composer-repository-bundle/tree/1.4.1) [diff](https://github.com/vaimo/composer-repository-bundle/compare/1.4.0...1.4.1)
53+
54+
## 1.4.0 (2018-08-09)
55+
56+
### Feature
57+
58+
* allow shorter declaration of local project-specific repositories
59+
60+
### Fix
61+
62+
* require command not triggering bundle bootstrap (therefore 'composer require' was not usable to get bundle packages installed)
63+
* don't fail when local bundle folder (configured in composer.json extra) does not exist
64+
* use getcwd() for detecting project root directory instead of resolving it from composer config path which might be different when running global composer
65+
* changed the default dev-* branch name that bundle modules are perceived with: dev-<bundle-name>
66+
* making sure that calling bundle repo bootstrap twice does not required repositories multiple times
67+
68+
Links: [src](https://github.com/vaimo/composer-repository-bundle/tree/1.4.0) [diff](https://github.com/vaimo/composer-repository-bundle/compare/1.3.1...1.4.0)
69+
70+
## 1.3.1 (2018-07-23)
71+
72+
### Maintenance
73+
74+
* minor updated to packages's meta-data
75+
76+
Links: [src](https://github.com/vaimo/composer-repository-bundle/tree/1.3.1) [diff](https://github.com/vaimo/composer-repository-bundle/compare/1.3.0...1.3.1)
77+
78+
## 1.3.0 (2018-07-23)
79+
80+
### Feature
81+
82+
* allow package installation on any version when dealing with local package, rather than forcing user to use dev-default
83+
84+
### Fix
85+
86+
* updated bundle:info command output; name had a wrong value (origin path) under certain circumstances (local bundle)
87+
* bundle list feature crash: one dependency missing a constructor argument
88+
* bundle deploy not recognizing sym-linked packages
89+
90+
Links: [src](https://github.com/vaimo/composer-repository-bundle/tree/1.3.0) [diff](https://github.com/vaimo/composer-repository-bundle/compare/1.2.0...1.3.0)
91+
92+
## 1.2.0 (2018-07-18)
93+
94+
### Feature
95+
96+
* allow local folders to be defined as bundles (without the need to download anything)
97+
* improved bundle configuration validation
98+
99+
### Fix
100+
101+
* do not modify/re-save composer.json of bundled packages if there are no changes to be made to them
102+
* do not configure PSR-4 if there's already configuration in place
103+
104+
### Maintenance
105+
106+
* log output modified towards being less noisy when nothing is changed
107+
108+
Links: [src](https://github.com/vaimo/composer-repository-bundle/tree/1.2.0) [diff](https://github.com/vaimo/composer-repository-bundle/compare/1.1.0...1.2.0)
109+
110+
## 1.1.0 (2018-07-12)
111+
112+
### Feature
113+
114+
* new command added to list bundles and the packages they provide
115+
* hide bundle package-list details on non-verbose run
116+
117+
### Maintenance
118+
119+
* unused code/classes removed
120+
121+
Links: [src](https://github.com/vaimo/composer-repository-bundle/tree/1.1.0) [diff](https://github.com/vaimo/composer-repository-bundle/compare/1.0.0...1.1.0)
122+
123+
## 1.0.0 (2018-07-12)
124+
125+
### Feature
126+
127+
* allow packages to be installed from sub-folders of repositories
128+
* allow packages to be installed from sub-folders of zip files
129+
* allow 'update' to pull in changes from the bundle when bundle files have changed
130+
* introduced new command group: 'bundle', to allow fetching information about the bundle packages
131+
132+
Links: [src](https://github.com/vaimo/composer-repository-bundle/tree/1.0.0) [diff](https://github.com/vaimo/composer-repository-bundle/compare/2a73a640fa65fec178c9fbad7ffd2e9d06d3bd51...1.0.0)

composer.lock

Lines changed: 134 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)