This repository has been archived by the owner on Nov 10, 2023. It is now read-only.
Releases: facebook/buck
Releases · facebook/buck
Release v2017.10.01.01
Prepare release v2017.10.01.01. Summary: Cut a new release to include partial Java 9 build support and many performance and usability improvements. Test Plan: CI Reviewed By: dinhviethoa fbshipit-source-id: 0320950
Release v2017.09.04.02
Prepare release v2017.09.04.01. Test Plan: CI Reviewed By: dinhviethoa fbshipit-source-id: 21b2d40
Release v2017.05.31.01
Prepare release v2017.05.31.01. Summary: Prepare to release a new homebrew version without so big binary size. Test Plan: CI Reviewed By: shivanker fbshipit-source-id: 3f9e7c3
v2017.05.09.01
v2017.05.09.01
v2017.03.29.01
Prepare release v2017.03.29.01
v2016.11.11.01
Prepare release v2016.11.11.01.
v2016.09.26.01
Prepare release v2016.09.26.01.
v2016.09.02.01
Prepare release v2016.09.02.01.
v2016.04.18.01
- Thanks to @Dominator008,
vm_args
was added tojava_test
documentation: https://buckbuild.com/rule/java_test.html xctest
s are now streamed to Buck instead of waiting until completion- A
flatten_dicts
method was added for use in build files: https://buckbuild.com/function/flatten_dicts.html - Buck can now fail the build when using header files that are untracked by build files: https://buckbuild.com/concept/buckconfig.html#cxx.untracked_headers
- Buck now has very basic support for the AppleTV platform
- Buck now caches its Action Graph, which is part of the Parsing phase. Large projects should see this step speed up.
- Cross-cell references can now be called with
@
or+
. The latter is useful for command-line invocations. - The
repl
command was added: https://buckbuild.com/command/repl.html - Support for Android NDK r11 and newer was added.
- Buck now allows overriding of the command to package for
apple_binary
rules: https://buckbuild.com/concept/buckconfig.html#apple.*_package_command
v2016.03.28.01
python_test
rules can now have a custom main_module: https://buckbuild.com/rule/python_test.htmlandroid_binary
rules now fail if given an incorrect keystore alias.- Buck no longer pulls in a dependency if the library does not support the current platform.
- Added a number of settings to control how many threads Buck uses: https://buckbuild.com/concept/buckconfig.html#build.thread_core_ratio, https://buckbuild.com/concept/buckconfig.html#build.thread_core_ratio_max_threads, https://buckbuild.com/concept/buckconfig.html#build.thread_core_ratio_min_threads, https://buckbuild.com/concept/buckconfig.html#build.thread_core_ratio_reserved_cores
- Buck now supports
android_prebuilt_aar
s that do not have aclasses.jar
file. - Thanks to @lucidsheep, Buck now supports project generation for an iOS project from the root directory of a project.
- Added the concept of a worker tool to assist in daemonic tools used during the build process: https://buckbuild.com/rule/worker_tool.html
- Buck now supports vendored directories for Go: https://buckbuild.com/concept/buckconfig.html#go.vendor_path
- Thanks to @ray-milkey, Buck no longer tries to run Java methods annotated with
@Test
on anabstract
class. - Values can now be inserted into
AndroidManifest.xml
from build files. See https://buckbuild.com/function/flatten_dicts.html and https://buckbuild.com/rule/android_binary.html - On unix systems, Buck now kills subprocesses when buckd is restarted.
- Buck no longer supports running android instrumentation tests on multiple devices
- Buck's exopackage support now works with Android N devices.
- Thanks to @mikekap,
go_test
now supports resources: https://buckbuild.com/rule/go_test.html - The Buck codebase is now using
buck autodeps
for all dependencies. This feature is still considered experitmental, but other Java-based projects might find it good enough to start trying today. https://buckbuild.com/command/autodeps.html