Skip to content

Commit

Permalink
build(deps): bump golang.org/x/sys from 0.26.0 to 0.27.0 (#1390)
Browse files Browse the repository at this point in the history
Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.26.0 to
0.27.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/golang/sys/commit/e0753d46944376af67385bb4c7c419d13967bcd9"><code>e0753d4</code></a>
Revert &quot;windows/mkwinsyscall: use syscall.SyscallN instead of
syscall.Syscall...</li>
<li><a
href="https://github.com/golang/sys/commit/c29efe38de3592b9ec11d314613d7a63126cddbf"><code>c29efe3</code></a>
windows: add iphlpapi functions for change notifications</li>
<li><a
href="https://github.com/golang/sys/commit/8f2aa9fb488f140f155cdc02b438533a5c75eeed"><code>8f2aa9f</code></a>
cpu: conditionally re-enable AVX512 support on darwin/amd64</li>
<li><a
href="https://github.com/golang/sys/commit/054f1fcdf746e45edc4baf1840e5c5750b7a864a"><code>054f1fc</code></a>
README: don't recommend go get</li>
<li><a
href="https://github.com/golang/sys/commit/ca0404159d3968c81cc85385a3ef8ee058ecb850"><code>ca04041</code></a>
unix: extend z/OS support</li>
<li><a
href="https://github.com/golang/sys/commit/18e038c8ee1d315bcf6e5365414c1b1ddcc06c1c"><code>18e038c</code></a>
unix: move NETLINK_* consts to own section</li>
<li><a
href="https://github.com/golang/sys/commit/d045236a8d4b76a8a8d1fee1c3db5e78a2871381"><code>d045236</code></a>
windows: implement Ftruncate using a single syscall on Windows</li>
<li><a
href="https://github.com/golang/sys/commit/cff53d5a33f46e1cf36b1e28015328cf33c88375"><code>cff53d5</code></a>
unix: gofmt after CL 610296</li>
<li><a
href="https://github.com/golang/sys/commit/123459f09655dd6e41895fbb34b94dce6030ef8b"><code>123459f</code></a>
unix: update z/OS implementation of fcntl and mmap</li>
<li><a
href="https://github.com/golang/sys/commit/df4a4da00ce033d67dddcb2ddf804f1ba85e5ccc"><code>df4a4da</code></a>
unix/linux: adjust Dockerfile ENV key value format</li>
<li>Additional commits viewable in <a
href="https://github.com/golang/sys/compare/v0.26.0...v0.27.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/sys&package-manager=go_modules&previous-version=0.26.0&new-version=0.27.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Nov 13, 2024
1 parent 4295a93 commit de45434
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ require (
go.step.sm/crypto v0.54.0
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0
golang.org/x/sync v0.9.0
golang.org/x/sys v0.26.0
golang.org/x/sys v0.27.0
golang.org/x/time v0.7.0
google.golang.org/api v0.205.0
gopkg.in/ini.v1 v1.67.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -481,8 +481,8 @@ golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/sys v0.26.0 h1:KHjCJyddX0LoSTb3J+vWpupP9p0oznkqVk/IfjymZbo=
golang.org/x/sys v0.26.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/sys v0.27.0 h1:wBqf8DvsY9Y/2P8gAfPDEYNuS30J4lPHJxXSb/nJZ+s=
golang.org/x/sys v0.27.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc=
Expand Down

0 comments on commit de45434

Please sign in to comment.