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 - Introduction of the .= and =. operator
6 - Sort variables, keys and groups in bitdoc
7 - Fix regression in the handling of BBCOLLECTIONS
8 - Update the bitbake usermanual
10 Changes in BitBake 1.3.0:
11 - add bitbake interactive shell (bitbake -i)
12 - refactor bitbake utility in OO style
13 - kill default arguments in methods in the bb.data module
14 - kill default arguments in methods in the bb.fetch module
15 - the http/https/ftp fetcher will fail if the to be
16 downloaded file was not found in DL_DIR (this is needed
17 to avoid unpacking the sourceforge mirror page)
18 - Switch to a cow like data instance for persistent and non
19 persisting mode (called data_smart.py)
20 - Changed the callback of bb.make.collect_bbfiles to carry
22 - Drastically reduced the amount of needed RAM by not holding
23 each data instance in memory when using a cache/persistent
26 Changes in BitBake 1.2.1:
27 The 1.2.1 release is meant as a intermediate release to lay the
28 ground for more radical changes. The most notable changes are:
30 - Do not hardcode {}, use bb.data.init() instead if you want to
31 get a instance of a data class
32 - bb.data.init() is a factory and the old bb.data methods are delegates
33 - Do not use deepcopy use bb.data.createCopy() instead.
34 - Removed default arguments in bb.fetch