Shell:
[vuplus_bitbake] / ChangeLog
1 Changes in BitBake 1.3.2:
2         - reintegration of make.py into BitBake
3         - bbread is gone, use bitbake -e
4         - lots of shell updates and bugfixes
5
6 Changes in BitBake 1.3.0:
7         - add bitbake interactive shell (bitbake -i)
8         - refactor bitbake utility in OO style
9         - kill default arguments in methods in the bb.data module
10         - kill default arguments in methods in the bb.fetch module
11         - the http/https/ftp fetcher will fail if the to be 
12           downloaded file was not found in DL_DIR (this is needed
13           to avoid unpacking the sourceforge mirror page)
14         - Switch to a cow like data instance for persistent and non
15           persisting mode (called data_smart.py)
16         - Changed the callback of bb.make.collect_bbfiles to carry
17           additional parameters
18         - Drastically reduced the amount of needed RAM by not holding
19           each data instance in memory when using a cache/persistent
20           storage
21
22 Changes in BitBake 1.2.1:
23         The 1.2.1 release is meant as a intermediate release to lay the
24         ground for more radical changes. The most notable changes are:
25
26         - Do not hardcode {}, use bb.data.init() instead if you want to
27           get a instance of a data class
28         - bb.data.init() is a factory and the old bb.data methods are delegates
29         - Do not use deepcopy use bb.data.createCopy() instead.
30         - Removed default arguments in bb.fetch
31