Skip to content

Commit 2ac72e7

Browse files
Bazel Release Systemiancha1992
Bazel Release System
authored andcommitted
Release 8.2.0 (2025-04-14)
Release Notes:
1 parent 98f8b2e commit 2ac72e7

File tree

1 file changed

+172
-0
lines changed

1 file changed

+172
-0
lines changed

CHANGELOG.md

Lines changed: 172 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,175 @@
1+
## Release 8.2.0 (2025-04-14)
2+
3+
```
4+
5+
Release Notes:
6+
7+
```
8+
9+
## Release 9.0.0-pre.20250402.1 (2025-04-09)
10+
11+
```
12+
Baseline: 37f66573e0a9716afd5d54e58aaf1692e0dccb11
13+
```
14+
15+
Important changes:
16+
17+
- The `config` command now reports which configurations have had
18+
the test configuration trimmed.
19+
- Stop documenting the vestigial `distribs` attribute.
20+
21+
This release contains contributions from many people at Google, as well as Alberto Cavalcante, Fabian Meumertzheim, Farid Zakaria.
22+
23+
## Release 9.0.0-pre.20250327.3 (2025-04-03)
24+
25+
```
26+
Baseline: c0dd034180b6e1d0d91497d51c9b537f0965e1bb
27+
28+
Cherry picks:
29+
30+
+ fa6b1b7ec8deb727d437cd6f7f0324bfc7a6d6b8:
31+
Reverse a RAM regression introduced by
32+
https://github.com/bazelbuild/bazel/commit/7e538803d775929beb3c9a
33+
f1cd2e87667d373bbe
34+
```
35+
36+
This release contains contributions from many people at Google, as well as Fabian Meumertzheim, Jon Shea, Keith Smiley, Pelikan.B, Roman Salvador, Yannic.
37+
38+
## Release 7.6.1 (2025-03-31)
39+
40+
```
41+
42+
Release Notes:
43+
44+
```
45+
46+
## Release 9.0.0-pre.20250324.2 (2025-03-28)
47+
48+
```
49+
Baseline: 7e538803d775929beb3c9af1cd2e87667d373bbe
50+
51+
Cherry picks:
52+
53+
+ fa6b1b7ec8deb727d437cd6f7f0324bfc7a6d6b8:
54+
Reverse a RAM regression introduced by
55+
https://github.com/bazelbuild/bazel/commit/7e538803d775929beb3c9a
56+
f1cd2e87667d373bbe
57+
```
58+
59+
Important changes:
60+
61+
- The new
62+
`--@bazel_tools//tools/test:incompatible_use_default_test_toolchai
63+
n` flag can be used to have test actions select an execution
64+
platform that has all the constraints provided by the target
65+
platform instead of always selecting the first available
66+
execution platform. This supersedes the
67+
`--use_target_platform_for_tests` flag.
68+
- `--experimental_downloader_config` is now no longer experimental,
69+
and has been renamed to `--downloader_config`. The old flag name
70+
can still be used.
71+
72+
This release contains contributions from many people at Google, as well as Benjamin Peterson, Fabian Meumertzheim, Kevin Bernal, Lszl Csomor, tfrench.
73+
74+
## Release 9.0.0-pre.20250317.2 (2025-03-27)
75+
76+
```
77+
Baseline: 528c2c5e2e7341f9bf538f35077d29dd41988a71
78+
79+
Cherry picks:
80+
81+
+ d02f003a4b818ed2936bc6719204b884aa71e1ff:
82+
Prevent concurrent use of the same `CharsetEncoder` in
83+
`json.decode`
84+
```
85+
86+
This release contains contributions from many people at Google, as well as Benjamin Peterson, Fabian Meumertzheim, Zachary Kipping.
87+
88+
## Release 7.6.0 (2025-03-24)
89+
90+
```
91+
92+
Release Notes:
93+
94+
```
95+
96+
## Release 9.0.0-pre.20250311.1 (2025-03-19)
97+
98+
```
99+
Baseline: c422744caa072c66311a937049504901bc674b7d
100+
```
101+
102+
This release contains contributions from many people at Google, as well as Fabian Meumertzheim.
103+
104+
## Release 9.0.0-pre.20250307.1 (2025-03-14)
105+
106+
```
107+
Baseline: 8dbfcfae924b014366a0b47cd26632c5076b51a2
108+
```
109+
110+
Incompatible changes:
111+
112+
- The canonical names of repos created with `use_repo_rule` have
113+
changed, which may require updating command-line flags such as
114+
`--override_repository`.
115+
116+
Important changes:
117+
118+
- Add `no_toolchain_error` to the `platform` rule, to customize
119+
error messages when a required toolchain type cannot be found for
120+
that platform.
121+
- Flag `--incompatible_remote_use_new_exit_code_for_lost_inputs` is
122+
deleted.
123+
- None:
124+
125+
This release contains contributions from many people at Google, as well as Aaron Sky, Benjamin Peterson, dependabot[bot], Dmitry Ivankov, Fabian Meumertzheim, jjudd, kxxt, Tobias Werth.
126+
127+
## Release 8.1.1 (2025-02-25)
128+
129+
```
130+
131+
Release Notes:
132+
133+
```
134+
135+
## Release 9.0.0-pre.20250210.1 (2025-02-19)
136+
137+
```
138+
Baseline: f6cb2fb25c1deee9776eda976be151c598597b35
139+
```
140+
141+
Incompatible changes:
142+
143+
- Constraints and toolchain requirements added to the default exec
144+
group, for example via the toolchains parameter of the rule
145+
function or the exec_compatible_with attribute on all rules, no
146+
longer apply to the test exec group, which contains the test
147+
action on test rules. Instead, use exec_group_compatible_with to
148+
apply constraints and/or define an explicit test exec group with
149+
toolchain requirements on test rules that require it.
150+
151+
Important changes:
152+
153+
- The new exec_group_compatible_with attribute on all rules accepts
154+
a dictionary mapping exec group names to lists of additional
155+
constraints to request from the exec group's execution platform.
156+
- Removes the `--incompatible_enable_cc_test_feature` flag. The
157+
functionality this was intended for was never completed, and is
158+
no longer needed.
159+
- Added `repository_ctx.original_name`, which contains the original
160+
value of the `name` attribute as specified at the repo rule call
161+
site.
162+
- The new `no_match_error` attribute on `toolchain_type` can be
163+
used to show a custom message when no matching toolchain is found
164+
for that type, but one is required.
165+
- Adds `ctx.rule.var` to allow aspects to get rule-specific
166+
variables, and removes rule-specific variables from an aspect's
167+
`ctx.var` dict.
168+
- LCOV parsing does not break on FN lines including an end line
169+
number.
170+
171+
This release contains contributions from many people at Google, as well as Benjamin Peterson, dependabot[bot], Fabian Meumertzheim, Jordan Mele, Jordan Mele, Keith Smiley, Spencer Putt.
172+
1173
## Release 8.1.0 (2025-02-13)
2174

3175
```

0 commit comments

Comments
 (0)