Skip to content

Commit b8a4d48

Browse files
committed
RiskyChanges.md: update to Go 1.26
Change-Id: I82e71d750930eebd8aa9bac889e90bb75e98bc46 Reviewed-on: https://go-review.googlesource.com/c/wiki/+/688475 Reviewed-by: Carlos Amedee <[email protected]>
1 parent ffdea33 commit b8a4d48

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

RiskyChanges.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ revert** (for example, large CLs or stacks of CLs).
1212

1313
If you plan on working on a change that may be risky, please do the following:
1414
1. Unless the entire change is absolutely trivial to revert, protect the new code paths with a
15-
boolean flag, prefixed with `go125`, that can be used to quickly toggle back to the old
15+
boolean flag, prefixed with `go126`, that can be used to quickly toggle back to the old
1616
implementation.
17-
It can be a simple bool constant, for example, `const go125UseEvenBetterLinker = true`.
18-
Such flags **must be findable** by a simple grep for the string `go125`.
17+
It can be a simple bool constant, for example, `const go126UseEvenBetterLinker = true`.
18+
Such flags **must be findable** by a simple grep for the string `go126`.
1919
That way we can find them without missing any, and they can be cleaned up when we get to the
20-
Go 1.26 cycle.
20+
Go 1.27 cycle.
2121
2. Consider how you would answer the following questions for your change:
2222
* How risky is the change you're planning to make?
2323
* How will you know if it is working as intended?
2424
* How much production testing does it need for you to be confident it is working as intended?
2525
* When should the keep/revert decision be made?
26-
3. Create a tracking issue in the Go 1.25 milestone with a release-blocker label.
27-
This issue will be used to track progress on the feature and make the final decision for Go 1.25.
26+
3. Create a tracking issue in the Go 1.26 milestone with a release-blocker label.
27+
This issue will be used to track progress on the feature and make the final decision for Go 1.26.

0 commit comments

Comments
 (0)