Skip to content

Commit 5683cfd

Browse files
Bump fortio.org/fortio from 1.66.0 to 1.66.1 (#74)
Bumps [fortio.org/fortio](https://github.com/fortio/fortio) from 1.66.0 to 1.66.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/fortio/fortio/releases">fortio.org/fortio's releases</a>.</em></p> <blockquote> <h2>v1.66.1</h2> <h2>What's Changed</h2> <ul> <li>go 1.22.6 based</li> <li>dependency updates</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/fortio/fortio/compare/v1.66.0...v1.66.1">https://github.com/fortio/fortio/compare/v1.66.0...v1.66.1</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/fortio/fortio/commit/8a7d9112667e637139c788b68cb063f456d20cb4"><code>8a7d911</code></a> go 1.22.6 build image + go get -u ./... + prep for 1.66.1</li> <li><a href="https://github.com/fortio/fortio/commit/92fc9a553a5b9c64a32070dcb0d02dbe9114e7c8"><code>92fc9a5</code></a> Bump docker/build-push-action from 6.4.0 to 6.5.0 (<a href="https://redirect.github.com/fortio/fortio/issues/957">#957</a>)</li> <li><a href="https://github.com/fortio/fortio/commit/c427cf068c56ab6ea7dc9594571b5c1406864671"><code>c427cf0</code></a> Bump docker/build-push-action from 6.3.0 to 6.4.0 (<a href="https://redirect.github.com/fortio/fortio/issues/955">#955</a>)</li> <li><a href="https://github.com/fortio/fortio/commit/212d886bb7f38206fc4c0d14e2c5574f893fbdce"><code>212d886</code></a> Bump docker/build-push-action from 6.2.0 to 6.3.0 (<a href="https://redirect.github.com/fortio/fortio/issues/953">#953</a>)</li> <li><a href="https://github.com/fortio/fortio/commit/feb8a8f8c0efd990015ff1bdb6aa8213ffe454b2"><code>feb8a8f</code></a> Bump golang.org/x/net from 0.26.0 to 0.27.0 (<a href="https://redirect.github.com/fortio/fortio/issues/952">#952</a>)</li> <li>See full diff in <a href="https://github.com/fortio/fortio/compare/v1.66.0...v1.66.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=fortio.org/fortio&package-manager=go_modules&previous-version=1.66.0&new-version=1.66.1)](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 will merge this PR once CI passes on it, as requested by @ldemailly. [//]: # (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>
1 parent 393e3e8 commit 5683cfd

File tree

2 files changed

+27
-27
lines changed

2 files changed

+27
-27
lines changed

go.mod

+9-9
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ go 1.22.4
44

55
require (
66
fortio.org/assert v1.2.1
7-
fortio.org/fortio v1.66.0
8-
fortio.org/log v1.15.0
7+
fortio.org/fortio v1.66.1
8+
fortio.org/log v1.16.0
99
fortio.org/scli v1.15.1
1010
github.com/prometheus/client_golang v1.19.1
1111
golang.org/x/time v0.5.0
1212
)
1313

1414
require (
15-
fortio.org/cli v1.7.0 // indirect
15+
fortio.org/cli v1.8.0 // indirect
1616
fortio.org/dflag v1.7.2 // indirect
17-
fortio.org/sets v1.1.1 // indirect
17+
fortio.org/sets v1.2.0 // indirect
1818
fortio.org/struct2env v0.4.1 // indirect
1919
fortio.org/version v1.0.4 // indirect
2020
github.com/beorn7/perks v1.0.1 // indirect
@@ -25,10 +25,10 @@ require (
2525
github.com/prometheus/client_model v0.5.0 // indirect
2626
github.com/prometheus/common v0.48.0 // indirect
2727
github.com/prometheus/procfs v0.12.0 // indirect
28-
golang.org/x/crypto/x509roots/fallback v0.0.0-20240626151235-a6a393ffd658 // indirect
29-
golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8 // indirect
30-
golang.org/x/net v0.26.0 // indirect
31-
golang.org/x/sys v0.21.0 // indirect
32-
golang.org/x/text v0.16.0 // indirect
28+
golang.org/x/crypto/x509roots/fallback v0.0.0-20240806160748-b2d3a6a4b4d3 // indirect
29+
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
30+
golang.org/x/net v0.28.0 // indirect
31+
golang.org/x/sys v0.23.0 // indirect
32+
golang.org/x/text v0.17.0 // indirect
3333
google.golang.org/protobuf v1.34.2 // indirect
3434
)

go.sum

+18-18
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
fortio.org/assert v1.2.1 h1:48I39urpeDj65RP1KguF7akCjILNeu6vICiYMEysR7Q=
22
fortio.org/assert v1.2.1/go.mod h1:039mG+/iYDPO8Ibx8TrNuJCm2T2SuhwRI3uL9nHTTls=
3-
fortio.org/cli v1.7.0 h1:w+uXZLGi4t3Vn/BvbeMuSw84Z1pvNPG9HqeGfpP68cc=
4-
fortio.org/cli v1.7.0/go.mod h1:s4vxWz7P7T4cYOWdMF0NA693Nu1gK9OW4KoDj54/Do4=
3+
fortio.org/cli v1.8.0 h1:Mz1phmUwkQaXESGb1nIWBY+CHli/GYIlhwpktorh9sY=
4+
fortio.org/cli v1.8.0/go.mod h1:pk/JBE8LcXtNuo5Yj2bLsVbwPaHo8NWdbstSN0cpbFk=
55
fortio.org/dflag v1.7.2 h1:lUhXFvDlw4CJj/q7hPv/TC+n/wVoQylzQO6bUg5GQa0=
66
fortio.org/dflag v1.7.2/go.mod h1:6yO/NIgrWfQH195WbHJ3Y45SCx11ffivQjfx2C/FS1U=
7-
fortio.org/fortio v1.66.0 h1:9F/200qIu136z847bxs/NeAoYdJaQlVofYlppi3qwcw=
8-
fortio.org/fortio v1.66.0/go.mod h1:eUl5MRscw6CiWAStai8aB3/8unxA9uNzJRXdhKEaq1s=
9-
fortio.org/log v1.15.0 h1:DRbZzgZH4av3ZPz6yIcvBwMy4NLH8a5iznRXXEegvJQ=
10-
fortio.org/log v1.15.0/go.mod h1:t58Spg9njjymvRioh5F6qKGSupEsnMjXLGWIS1i3khE=
7+
fortio.org/fortio v1.66.1 h1:NiVVHUy/DkMoOA/oLJHs0slsTnm/h3ocLbSfvP6NXIc=
8+
fortio.org/fortio v1.66.1/go.mod h1:3qkJSza2B2PC8TVen78wIupHgnsXvlzUnSvgQfiKfUM=
9+
fortio.org/log v1.16.0 h1:GhU8/9NkYZmEIzvTN/DTMedDAStLJraWUUVUA2EbNDc=
10+
fortio.org/log v1.16.0/go.mod h1:t58Spg9njjymvRioh5F6qKGSupEsnMjXLGWIS1i3khE=
1111
fortio.org/scli v1.15.1 h1:Upza50brpEZwUk8Nn2gdP4BjgqJZY3J+z7KLrrAzPjY=
1212
fortio.org/scli v1.15.1/go.mod h1:9LOD4iPe9u73KeJGYC/Af1oFniOafO7oZ9VvwENMf/c=
13-
fortio.org/sets v1.1.1 h1:Q7Z1Ft2lpUc1N7bfI8HofIK0QskrOflfYRyKT2LzBng=
14-
fortio.org/sets v1.1.1/go.mod h1:J2BwIxNOLWsSU7IMZUg541kh3Au4JEKHrghVwXs68tE=
13+
fortio.org/sets v1.2.0 h1:FBfC7R2xrOJtkcioUbY6WqEzdujuBoZRbSdp1fYF4Kk=
14+
fortio.org/sets v1.2.0/go.mod h1:J2BwIxNOLWsSU7IMZUg541kh3Au4JEKHrghVwXs68tE=
1515
fortio.org/struct2env v0.4.1 h1:rJludAMO5eBvpWplWEQNqoVDFZr4RWMQX7RUapgZyc0=
1616
fortio.org/struct2env v0.4.1/go.mod h1:lENUe70UwA1zDUCX+8AsO663QCFqYaprk5lnPhjD410=
1717
fortio.org/version v1.0.4 h1:FWUMpJ+hVTNc4RhvvOJzb0xesrlRmG/a+D6bjbQ4+5U=
@@ -38,16 +38,16 @@ github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSz
3838
github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc=
3939
github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo=
4040
github.com/prometheus/procfs v0.12.0/go.mod h1:pcuDEFsWDnvcgNzo4EEweacyhjeA9Zk3cnaOZAZEfOo=
41-
golang.org/x/crypto/x509roots/fallback v0.0.0-20240626151235-a6a393ffd658 h1:i7K6wQLN/0oxF7FT3tKkfMCstxoT4VGG36YIB9ZKLzI=
42-
golang.org/x/crypto/x509roots/fallback v0.0.0-20240626151235-a6a393ffd658/go.mod h1:kNa9WdvYnzFwC79zRpLRMJbdEFlhyM5RPFBBZp/wWH8=
43-
golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8 h1:yixxcjnhBmY0nkL253HFVIm0JsFHwrHdT3Yh6szTnfY=
44-
golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8/go.mod h1:jj3sYF3dwk5D+ghuXyeI3r5MFf+NT2An6/9dOA95KSI=
45-
golang.org/x/net v0.26.0 h1:soB7SVo0PWrY4vPW/+ay0jKDNScG2X9wFeYlXIvJsOQ=
46-
golang.org/x/net v0.26.0/go.mod h1:5YKkiSynbBIh3p6iOc/vibscux0x38BZDkn8sCUPxHE=
47-
golang.org/x/sys v0.21.0 h1:rF+pYz3DAGSQAxAu1CbC7catZg4ebC4UIeIhKxBZvws=
48-
golang.org/x/sys v0.21.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
49-
golang.org/x/text v0.16.0 h1:a94ExnEXNtEwYLGJSIUxnWoxoRz/ZcCsV63ROupILh4=
50-
golang.org/x/text v0.16.0/go.mod h1:GhwF1Be+LQoKShO3cGOHzqOgRrGaYc9AvblQOmPVHnI=
41+
golang.org/x/crypto/x509roots/fallback v0.0.0-20240806160748-b2d3a6a4b4d3 h1:oWb21rU9Q9XrRwXLB7jHc1rbp6EiiimZZv5MLxpu4T0=
42+
golang.org/x/crypto/x509roots/fallback v0.0.0-20240806160748-b2d3a6a4b4d3/go.mod h1:kNa9WdvYnzFwC79zRpLRMJbdEFlhyM5RPFBBZp/wWH8=
43+
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 h1:2dVuKD2vS7b0QIHQbpyTISPd0LeHDbnYEryqj5Q1ug8=
44+
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56/go.mod h1:M4RDyNAINzryxdtnbRXRL/OHtkFuWGRjvuhBJpk2IlY=
45+
golang.org/x/net v0.28.0 h1:a9JDOJc5GMUJ0+UDqmLT86WiEy7iWyIhz8gz8E4e5hE=
46+
golang.org/x/net v0.28.0/go.mod h1:yqtgsTWOOnlGLG9GFRrK3++bGOUEkNBoHZc8MEDWPNg=
47+
golang.org/x/sys v0.23.0 h1:YfKFowiIMvtgl1UERQoTPPToxltDeZfbj4H7dVUCwmM=
48+
golang.org/x/sys v0.23.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
49+
golang.org/x/text v0.17.0 h1:XtiM5bkSOt+ewxlOE/aE/AKEHibwj/6gvWMl9Rsh0Qc=
50+
golang.org/x/text v0.17.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY=
5151
golang.org/x/time v0.5.0 h1:o7cqy6amK/52YcAKIPlM3a+Fpj35zvRj2TP+e1xFSfk=
5252
golang.org/x/time v0.5.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM=
5353
google.golang.org/protobuf v1.34.2 h1:6xV6lTsCfpGD21XK49h7MhtcApnLqkfYgPcdHftf6hg=

0 commit comments

Comments
 (0)