Skip to content

Releases: bazeltools/bzl-gen-build

Auto generated release for bzl-gen-build

07 May 18:24
ff0c51f
Compare
Choose a tag to compare
Bump to java 11 (#261)

Co-authored-by: Oscar Boykin <oboykin@netflix.com>

Auto generated release for bzl-gen-build

09 Apr 21:38
9ccc02d
Compare
Choose a tag to compare
Fix apply_binaries for Google3 (#243)

**Problem**
When using `--no-aggregate-source` option with py_binary,
I noticed that we end up generating py_binary twice,
first time for main, and second time for test.

**Solution**
This implements `TargetEntries::combine(ts1, ts2)`, which
can dedupliate the target entries based on the name.
There's an example in `examples/com` demonstrating the usage.

Auto generated release for bzl-gen-build

20 Mar 22:13
12f8e53
Compare
Choose a tag to compare
v0.1-107

Update to python-parser 0.3.0 (#237)

Auto generated release for bzl-gen-build

01 Mar 01:45
3ec38bd
Compare
Choose a tag to compare
Improve Python indexing example (#227)

**Problem**
In the current example Python indexing only tracks
3rdparty libraries, but not Protobuf-generated sources.

**Solution**
This adjusts the scripts to index both 3rdparty pip targets
and Protobuf-generated sources.

Auto generated release for bzl-gen-build

08 Feb 21:01
49ee024
Compare
Choose a tag to compare
Add JVM BUILD generation example (#214)

**Problem**
JVM BUILD generation is left to the reader as an exercise.

**Solution**
This implements a working example of BUILD generation for Java,
including the JAR scanning and protobuf-java indexing.

Auto generated release for bzl-gen-build

30 Jan 22:57
6590cbe
Compare
Choose a tag to compare
roll back to sbt 1.9.7 (#210)

Co-authored-by: Oscar Boykin <oboykin@netflix.com>

Auto generated release for bzl-gen-build

19 Jan 16:54
a2de553
Compare
Choose a tag to compare

Auto generated release for bzl-gen-build

05 Jan 16:51
3a0a299
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.1-96...v0.1-99

Auto generated release for bzl-gen-build

05 Jan 23:21
67dee62
Compare
Choose a tag to compare
Fix dependabot.yml (#193)

Looks like I missed `schedule:` line yesterday.

Auto generated release for bzl-gen-build

11 Dec 23:31
9b6e1f0
Compare
Choose a tag to compare
Support polyglot BUILD file (#170)

**Problem**
Currently it's not possible to mix languages within a package.

**Solution**
1. This implements `--append` flag to allow appending contents
   to BUILD.bazel.
2. This also adds `include_file_extension` configuration to
   allow `py_test` target to keep the name of the file
   as the target name.