-
Notifications
You must be signed in to change notification settings - Fork 2.4k
all: replace all usages of golang.org/x/sys/execabs with os/exec #455
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
This PR (HEAD: 55f0463) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/tools/+/539017. Important tips:
|
|
Message from Gopher Robot: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/539017. |
|
Message from Sebastiaan van Stijn: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/539017. |
|
Message from Bryan Mills: Patch Set 1: Code-Review+1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/539017. |
The "golang.org/x/sys/execabs" package was introduced to address a security issue on Windows, and changing the default behavior of os/exec was considered a breaking change. go1.19 applied the behavior that was previously implemented in the execabs package through CL 403274. This reverts fe37c9e (CL 284773). Updates #43724. Signed-off-by: Sebastiaan van Stijn <[email protected]>
|
This PR (HEAD: 18e93f3) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/tools/+/539017. Important tips:
|
|
Message from Sebastiaan van Stijn: Patch Set 2: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/539017. |
|
Message from Sebastiaan van Stijn: Patch Set 3: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/539017. |
|
Message from Bryan Mills: Patch Set 3: Code-Review+1 Commit-Queue+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/539017. |
|
Message from Go LUCI: Patch Set 3: Dry run: CV is trying the patch. Bot data: {"action":"start","triggered_at":"2023-11-09T15:37:06Z","revision":"14807c5aa12bdb43f3fad0fc765fd80a7f79b52e"} Please don’t reply on this GitHub thread. Visit golang.org/cl/539017. |
|
Message from Bryan Mills: Patch Set 3: -Commit-Queue Please don’t reply on this GitHub thread. Visit golang.org/cl/539017. |
|
Message from Go LUCI: Patch Set 3: This CL has passed the run Please don’t reply on this GitHub thread. Visit golang.org/cl/539017. |
|
Message from Go LUCI: Patch Set 3: LUCI-TryBot-Result+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/539017. |
|
Message from Roland Shoemaker: Patch Set 3: Code-Review+2 Please don’t reply on this GitHub thread. Visit golang.org/cl/539017. |
The "golang.org/x/sys/execabs" package was introduced to address a security issue on Windows, and changing the default behavior of os/exec was considered a breaking change. go1.19 applied the behavior that was previously implemented in the execabs package through CL 403274. This reverts fe37c9e (CL 284773). Updates #43724. Change-Id: I53987d0d0009b8dd11e05fc3d17cbffb9625a9c1 GitHub-Last-Rev: 18e93f3 GitHub-Pull-Request: #455 Reviewed-on: https://go-review.googlesource.com/c/tools/+/539017 LUCI-TryBot-Result: Go LUCI <[email protected]> Auto-Submit: Bryan Mills <[email protected]> Reviewed-by: Bryan Mills <[email protected]> Reviewed-by: Roland Shoemaker <[email protected]> Commit-Queue: Bryan Mills <[email protected]>
|
This PR is being closed because golang.org/cl/539017 has been merged. |
The "golang.org/x/sys/execabs" package was introduced to address a security issue on Windows, and changing the default behavior of os/exec was considered a breaking change. go1.19 applied the behavior that was previously implemented in the execabs package through CL 403274. This reverts 7b1be56 (CL 284773). Updates #43724. Change-Id: I53987d0d0009b8dd11e05fc3d17cbffb9625a9c1 GitHub-Last-Rev: 18e93f39c4e539c28166d4e29a58bbe0eb5711e7 GitHub-Pull-Request: golang/tools#455 Reviewed-on: https://go-review.googlesource.com/c/tools/+/539017 LUCI-TryBot-Result: Go LUCI <[email protected]> Auto-Submit: Bryan Mills <[email protected]> Reviewed-by: Bryan Mills <[email protected]> Reviewed-by: Roland Shoemaker <[email protected]> Commit-Queue: Bryan Mills <[email protected]>
The "golang.org/x/sys/execabs" package was introduced to address a
security issue on Windows, and changing the default behavior of os/exec
was considered a breaking change. go1.19 applied the behavior that was
previously implemented in the execabs package through CL 403274.
This reverts fe37c9e (CL 284773).
Updates #43724.