1 Changes in bitbake Trunk:
2 -kill default arguments in methods in the bb.data module
3 -kill default arguments in methods in the bb.fetch module
4 -the http/https/ftp fetcher will fail if the to be
5 downloaded file was not found in DL_DIR (this is needed
6 to avoid unpacking the sourceforge mirror page)
7 -Switch to a cow like data instance for persistent and non
8 persisting mode (called data_smart.py)
9 -Changed the callback of bb.make.collect_bbfiles to carry
11 -Drastically reduced the amount of needed RAM by not holding
12 each data instance in memory when using a cache/persistent
15 Changes in bitbake 1.2.1:
16 The 1.2.1 release is meant as a intermediate release to lay the
17 ground for more radical changes. The most notable changes are:
19 -Do not hardcode {}, use bb.data.init() instead if you want to
20 get a instance of a data class
21 -bb.data.init() is a factory and the old bb.data methods are delegates
22 -Do not use deepcopy use bb.data.createCopy() instead.
23 -Removed default arguments in bb.fetch