Skip to content

Commit

Permalink
Release 0.9.0 (2017-12-19)
Browse files Browse the repository at this point in the history
Baseline: ddd5ac1

Cherry picks:
   + 2cf560f:
     Update version of re2
   + a2d2615:
     Check for null build file returned from getBuildFileForPackage.
   + 68c577a:
     Fix some broken targets and failing tests.
   + 766ba8a:
     Automated rollback of commit
     337f19c.
   + a22d0e9:
     Fix: uploading artifacts of failed actions to remote cache
     stopped working.
   + 03964c8:
     [java_common.compile] Name output source jar relative to the
     output jar name

Incompatible changes:

  - The deprecated `set` constructor is removed, along with the
    migration flag --incompatible_disallow_set_constructor. It is
    still temporarily
    allowed to refer to `set` from within unexecuted code.
  - The flag --incompatible_disallow_set_constructor is no longer
    available, the deprecated `set` constructor is not available
    anymore.
  - The path to the JVM executable is not accessible anymore as
    ctx.{fragments,host_fragments}.jvm.java_executable. Use
    JavaRuntimeInfo.java_executable_exec_path instead.
  - --clean_style is no longer an option.

New features:

  - Users can use win_def_file attribute to specify a DEF file for
    exporting symbols when build a shared library on Windows.
  - Add --experimental_android_resource_cycle_shrinking option to
    allow for more aggressive code and resource shrinking.

Important changes:

  - Late-bound attributes are exposed to skylark. This is a new API
    (`configuration_field()`) to depend on certain
    configuration-defined targets from skylark rules.
  - Document interaction between test_suite and target exclusions
  - AAR manifest files will come from the processed resource APK if it
    exists.
    RELNOTES: None for Blaze users.
  - Document interaction between test_suite and target exclusions
  - --keep_incrementality_data flag allows Bazel servers to be run in
    memory-saving non-incremental mode independent of --batch and
    --discard_analysis_cache.
  - Add deps attribute to Skylark maven_aar and maven_jar workspace
    rules.
  - Use --expand_configs_in_place as a startup argument to change the
    order in which --config expansions are interpreted.
  - SOURCE_DATE_EPOCH
    (https://reproducible-builds.org/specs/source-date-epoch/) can
    be used to override the timestamp used for stamped target (when
    using --stamp).
  - Package specifications can now be prefixed with `-` to indicate
    negation
  - transitive_source_jars is now exposed on JavaInfo.
  - Add six to deps of has_services=1 py_proto_librarys.
  - java_tests no complain when use_testrunner is explicitly set to 1
    and main_class is set.
  - transitive_source_jars is now exposed on JavaInfo.
  - Debug messages generated by `print()` are not being filtered out
    by --output_filter anymore, it's recommended not to use them in
    production code.
  - in the Label() function, relative_to_caller_repository is now
    deprecated.
  - java_tests no complain when use_testrunner is explicitly set to 1
    and main_class is set.
  - Bazel's default hash function was changed from MD5 to SHA256.
    In particular, this affects users of remote caching and
    execution, as
    all hashes will be SHA256 by default.
  - Remove redirects for domains be.bazel.build and cr.bazel.build
    from the source for docs.bazel.build (because those subdomains
    don't resolve here; they resolve to bazel.build, which has the
    redirects for them)
  - First argument of 'load' must be a label. Path syntax is removed.
      (label should start with '//' or ':').
  - Document startup option --host_javabase
  - The --host_platform and --platform flags are no longer
    experimental.
  • Loading branch information
Bazel Release System authored and laszlocsomor committed Dec 19, 2017
1 parent e48a9c8 commit 7b423cc
Showing 1 changed file with 85 additions and 21 deletions.
106 changes: 85 additions & 21 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,31 +1,95 @@
## Release 0.8.1 (2017-12-05)
## Release 0.9.0 (2017-12-19)

```
Baseline: cff0dc94f6a8e16492adf54c88d0b26abe903d4c
Baseline: ddd5ac16aeffa6c4693c348f73e7365240b1abc5
Cherry picks:
+ 8a49b156c4edf710e3e1e0acfde5a8d27cc3a086:
Fix ImportError on tools.android for junction_lib
+ 275ae45b1228bdd0f912c4fbd634b29ba4180383:
Automated rollback of commit
4869c4e17d5b1410070a1570f3244148d8f97b5d.
+ d0bf589f2716b3d139c210930371a684c6e158eb:
Add a random number to action temp dir
+ 9738f35abddb7ef7a7ef314b5d2a52a3be1b830a:
CcProtoLibrary: Don't add dynamic librarys to filesToBuild on
Windows
+ 0d6ff477099fdf6c8c1c7d4e2104f9184afe0a2b:
+ 2cf560f83922e6df9626ba3ee063c1caf6797548:
Update version of re2
+ a2d2615362c65be98629b39ce39754a325ed1c42:
Check for null build file returned from getBuildFileForPackage.
+ 68c577afc2fb33b5e66b820bcc9043fed1071456:
Fix some broken targets and failing tests.
+ 766ba8adc4487f17ebfc081aeba6f34b18b53d6c:
Automated rollback of commit
0ebb3e54fc890946ae6b3d059ecbd50e4b5ec840.
+ 49008a3c90e65bc4abf5292af823a931b8f4e096:
Avoid NPEs when providers are not found in JavaInfo.
+ f499ddc6cf2f1dc5610e04f6ab42c1d11bad7b80:
Added missed imports.
337f19cc54e77c45daa1d5f61bf0a8d3daf8268f.
+ a22d0e9c14e58b29d81f5a83bdcc6e5fce52eafe:
Fix: uploading artifacts of failed actions to remote cache
stopped working.
+ 03964c8ccb20d673add76c7f37245e837c3899b6:
[java_common.compile] Name output source jar relative to the
output jar name
```

0.8.1rc3
Cherry-picked https://github.com/bazelbuild/bazel/commit/49008a3c90e65bc4abf5292af823a931b8f4e096.
Additional change to fix the missing imports.
Incompatible changes:

- The deprecated `set` constructor is removed, along with the
migration flag --incompatible_disallow_set_constructor. It is
still temporarily
allowed to refer to `set` from within unexecuted code.
- The flag --incompatible_disallow_set_constructor is no longer
available, the deprecated `set` constructor is not available
anymore.
- The path to the JVM executable is not accessible anymore as
ctx.{fragments,host_fragments}.jvm.java_executable. Use
JavaRuntimeInfo.java_executable_exec_path instead.
- --clean_style is no longer an option.

New features:

- Users can use win_def_file attribute to specify a DEF file for
exporting symbols when build a shared library on Windows.
- Add --experimental_android_resource_cycle_shrinking option to
allow for more aggressive code and resource shrinking.

Important changes:

- Late-bound attributes are exposed to skylark. This is a new API
(`configuration_field()`) to depend on certain
configuration-defined targets from skylark rules.
- Document interaction between test_suite and target exclusions
- AAR manifest files will come from the processed resource APK if it
exists.
RELNOTES: None for Blaze users.
- Document interaction between test_suite and target exclusions
- --keep_incrementality_data flag allows Bazel servers to be run in
memory-saving non-incremental mode independent of --batch and
--discard_analysis_cache.
- Add deps attribute to Skylark maven_aar and maven_jar workspace
rules.
- Use --expand_configs_in_place as a startup argument to change the
order in which --config expansions are interpreted.
- SOURCE_DATE_EPOCH
(https://reproducible-builds.org/specs/source-date-epoch/) can
be used to override the timestamp used for stamped target (when
using --stamp).
- Package specifications can now be prefixed with `-` to indicate
negation
- transitive_source_jars is now exposed on JavaInfo.
- Add six to deps of has_services=1 py_proto_librarys.
- java_tests no complain when use_testrunner is explicitly set to 1
and main_class is set.
- transitive_source_jars is now exposed on JavaInfo.
- Debug messages generated by `print()` are not being filtered out
by --output_filter anymore, it's recommended not to use them in
production code.
- in the Label() function, relative_to_caller_repository is now
deprecated.
- java_tests no complain when use_testrunner is explicitly set to 1
and main_class is set.
- Bazel's default hash function was changed from MD5 to SHA256.
In particular, this affects users of remote caching and
execution, as
all hashes will be SHA256 by default.
- Remove redirects for domains be.bazel.build and cr.bazel.build
from the source for docs.bazel.build (because those subdomains
don't resolve here; they resolve to bazel.build, which has the
redirects for them)
- First argument of 'load' must be a label. Path syntax is removed.
(label should start with '//' or ':').
- Document startup option --host_javabase
- The --host_platform and --platform flags are no longer
experimental.

## Release 0.8.0 (2017-11-27)

Expand Down

0 comments on commit 7b423cc

Please sign in to comment.