Skip to content
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

Bump the all group with 13 updates #41

Merged
merged 1 commit into from
Feb 17, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 7, 2024

Bumps the all group with 13 updates:

Package From To
github.com/bytedance/sonic 1.9.1 1.10.2
github.com/chenzhuoyu/base64x 0.0.0-20221115062448-fe3a3abad311 0.0.0-20230717121745-296ad89f973d
github.com/gabriel-vasile/mimetype 1.4.2 1.4.3
github.com/go-playground/validator/v10 10.14.0 10.17.0
github.com/klauspost/cpuid/v2 2.2.4 2.2.6
github.com/leodido/go-urn 1.2.4 1.4.0
github.com/pelletier/go-toml/v2 2.0.8 2.1.1
github.com/ugorji/go/codec 1.2.11 1.2.12
golang.org/x/arch 0.3.0 0.7.0
golang.org/x/crypto 0.17.0 0.18.0
golang.org/x/net 0.19.0 0.20.0
golang.org/x/sys 0.15.0 0.16.0
google.golang.org/protobuf 1.30.0 1.32.0

Updates github.com/bytedance/sonic from 1.9.1 to 1.10.2

Release notes

Sourced from github.com/bytedance/sonic's releases.

v1.10.2

Bugfix

  • #521 use int64 for MaxInt48 to compile in x86 arch
  • #530 unnecessary ptr check json.Unmarshaler
  • #531 missing write-barrier when truncate empty slice
  • #533 not use rbp in JIT

New Contributors

Full Changelog: bytedance/sonic@v1.10.1...v1.10.2

v1.10.1

Feature

  • #511 (ast) support sort keys on non-object node
  • #527 (encoder) Add NoValidateJSONMarshaler option

Bugfix

  • #504 (ast) check error before Set/Unset/Add()
  • #520 (native) over boundary bugs of skip number and tolower in native c

New Contributors

Full Changelog: bytedance/sonic@v1.10.0...v1.10.1

v1.10.0

Break Change

  • #464 Due to design bugs, we are sorry to warn you that some behaviors of ast.Node have to be changed:

    • BREAK CHANGE: ast.Unset() now WON'T change ast.Len() and ast.Index()
    • BREAK CHANGE: ast.UnsafeArray() and ast.UnsafeMap() are deprecated and user SHOULDN'T modify node based on these API
  • #393 Due to difficulty of maintaining compatibility with Golang:

    • BREAK CHANGE: sonic now only support Go 1.16~1.20, drop Go 1.15 support

Feature

  • #493 support Go1.21.0
  • #471 (ast) add ast.Visitor for transversing JSON in-place
  • #470 add Valid() API

Bugfix

  • #486 possible overflowed instruction while handling byte type
  • #484 (decoder) avoid scratched memory of returned error
  • #496 (ast) Exist() didn't check Valid() first
  • #498 (ast) drop ast.Node API UnsafeArray() and UnsafeMap() (Break Change)

... (truncated)

Commits

Updates github.com/chenzhuoyu/base64x from 0.0.0-20221115062448-fe3a3abad311 to 0.0.0-20230717121745-296ad89f973d

Commits

Updates github.com/gabriel-vasile/mimetype from 1.4.2 to 1.4.3

Release notes

Sourced from github.com/gabriel-vasile/mimetype's releases.

v1.4.3

What's Changed

New Contributors

Full Changelog: gabriel-vasile/mimetype@v1.4.2...v1.4.3

Commits
  • e64d6bd enable reusing records in csv/tsv detection (#443)
  • b4da7ba Bump the gomod group with 1 update (#441)
  • 918baec Bump the github-actions group with 4 updates (#442)
  • 9df6903 Switch csv and tsv method 'sv' from ReadAll() to stream each record with Read...
  • 85b2cdc Merge pull request #414 from gabriel-vasile/dependabot/github_actions/github-...
  • 24e5745 Merge pull request #412 from gabriel-vasile/dependabot/go_modules/gomod-939bd...
  • 6bd9427 Bump the github-actions group with 5 updates
  • 4f0da4f Bump the gomod group with 1 update
  • 1a4b844 Group all dependabot PRs together (#409)
  • f5a14c2 Remove old travis build status link from readme (#407)
  • Additional commits viewable in compare view

Updates github.com/go-playground/validator/v10 from 10.14.0 to 10.17.0

Release notes

Sourced from github.com/go-playground/validator/v10's releases.

Release 10.17.0

What's new

  • Add translation of requiredXXX and excludedXXX in English/Chinese/Chinese Taiwan.

What's fixed

  • Fix errors translation to work properly for aliases.

Release 10.16.0

What's new or fixed?

  • Added new issn validator. TY @​mrcook for the PR
  • Added improvement/fix to the file url validation. TY @​nodivbyzero for the PR
  • Fix onof tag in examples. TY @​gren236 for the PR
  • Add fmt.Stringer interface support to uuid validations allowing most UUID validation libraries which implement it to work transparently now. TY @​JoshGlazebrook for the PR
  • Added new omitnil similar to omitempty but for pointers. this is mainly for code generation ease. TY @​tarampampam for the PR

Release 10.15.5

What was fixed?

Fixed CIDRIPv4 validation, ty @​martinlehoux for the PR

Release 10.15.4

What was fixed?

Corrected a regression of skipping required for time.Time accidentally introduced in v10.15.2

Release 10.15.3

What was fixed?

Fix regression for invalid type check before calling reflect values type. Thank you @​MysteriousPotato for the PR

Release 10.15.2

What was fixed?

  • Refactored #1122 to support or's in tags + updated to required behaving the same as before v10.50.0 to support the community as there was a lot of code relying on the before behaviour, correct or not.

Release 10.15.1

What was fixed?

Corrected a few validations including gt, lt, ... when using floating point values, specifically float32, in this PR

Release 10.15.0

What's new?

  • Applying tag validations on structs is now a reality thank to @​MysteriousPotato in this PR
  • Added oneof tag to examples in this PR
  • Added Spice DB validations in this PR

What was fixed?

  • Fixed the REAMD logo link in this PR

... (truncated)

Commits
  • 55313db Update README.md
  • 37a1071 Add translation of requiredXXX and excludedXXX in English/Chinese/Chinese Tai...
  • add493f Update errors.go (#975)
  • 84254ae update README
  • 1246622 add ISSN validator + tests + documentation (#1166)
  • c856961 fix file URL validator (#1171)
  • aa96909 Add omitnil modifier (#1187)
  • b0c7337 update fieldMatchesRegexByStringerValOrString for backward compatibility
  • 4c1bd61 Add support for validating against uuid values that are structs which impleme...
  • adda84d Fix oneof tag in simple example (#1184)
  • Additional commits viewable in compare view

Updates github.com/klauspost/cpuid/v2 from 2.2.4 to 2.2.6

Release notes

Sourced from github.com/klauspost/cpuid/v2's releases.

v2.2.6

What's Changed

Full Changelog: klauspost/cpuid@v2.2.5...v2.2.6

v2.2.5

What's Changed

New Contributors

Full Changelog: klauspost/cpuid@v2.2.4...v2.2.5

Commits

Updates github.com/leodido/go-urn from 1.2.4 to 1.4.0

Release notes

Sourced from github.com/leodido/go-urn's releases.

v1.4.0

What's Changed

  • Implement RFC 8141 parsing by @​leodido in leodido/go-urn#41
  • Introduce URN8141 struct
  • Marshal/Unmarshal from/as URN8141 instance
  • Marshal/Unmarshal from/as SCIM instance

Others

  • Remove support for fallback parsing

Full Changelog: leodido/go-urn@v1.3.0...v1.4.0

v1.3.0

What's Changed

  • Support SCIM (RFC 7643) by @​leodido in leodido/go-urn#37
  • Introduce parsing modes (RFC2141 only, RFC7643 only, fallback mode)
  • Support best effort parsing: first try to match SCIM, otherwise fallback to generic URN pattern
  • Remove awk dependency during the build process by @​leodido in leodido/go-urn#36

Others

New Contributors

Full Changelog: leodido/go-urn@v1.2.4...v1.3.0

Commits
  • d725923 test: check custom (un)marshalling for RFC 8141 URNs
  • ebf11e5 test: check custom (un)marshalling for SCIM URNs
  • bba54fc feat: introduce FComponent(), QComponent(), and RComponent() methods
  • 07adff8 feat: implement custom (un)marshalling for RFC 8141 URNs
  • 7743153 feat: implement custom (un)marshalling for SCIM URNs
  • 08f2f5d feat: support {r,q,f}components (RFC 8141), local set of percent-encoded char...
  • 365c2ae test: check equality with nil gives false
  • 15ad639 test: test RFC 8141 URNs too
  • cb0fa7b test: add test cases for RFC8141
  • 43d2796 feat!: remove fallback mode
  • Additional commits viewable in compare view

Updates github.com/pelletier/go-toml/v2 from 2.0.8 to 2.1.1

Release notes

Sourced from github.com/pelletier/go-toml/v2's releases.

v2.1.1

What's Changed

Fixed bugs

New Contributors

Full Changelog: pelletier/go-toml@v2.1.0...v2.1.1

v2.1.0

This new minor release brings back the commented struct field tag from go-toml v1. It makes it easier to generate default or example configuration files. For instance:

type TLS struct {
	Cipher  string `toml:"cipher"`
	Version string `toml:"version"`
}
type Config struct {
	Host string `toml:"host" comment:"Host IP to connect to."`
	Port int    `toml:"port" comment:"Port of the remote server."`
	Tls  TLS    `toml:"TLS,commented" comment:"Encryption parameters (optional)"`
}
example := Config{
	Host: "127.0.0.1",
	Port: 4242,
	Tls: TLS{
		Cipher:  "AEAD-AES128-GCM-SHA256",
		Version: "TLS 1.3",
	},
}
out, err := toml.Marshal(example)

generates this TOML document:

# Host IP to connect to.
host = '127.0.0.1'
# Port of the remote server.
port = 4242
Encryption parameters (optional)
[TLS]
cipher = 'AEAD-AES128-GCM-SHA256'
version = 'TLS 1.3'
</tr></table>

... (truncated)

Commits

Updates github.com/ugorji/go/codec from 1.2.11 to 1.2.12

Release notes

Sourced from github.com/ugorji/go/codec's releases.

1.2.12

Release 1.2.12

This is a production release of go-codec.

Changes include:

  • expose (En|De)coder.HandleName()
  • cbor: fix indefinite stream conformance
  • codecgen: use base32 to generate field names
  • return io.ErrUnexpectedEOF (not io.EOF) when EOF is reached while needing more data

Please try it out and share your experiences.

Commits
  • 407a57a updating go.mod release to v1.2.12
  • 23d384a codec: bench: update latest benchmark results
  • 43b79bf codec: return io.ErrUnexpectedEOF (not io.EOF) when incomplete data read
  • 190086c codec: cbor test: support debugging and reuse testCborH
  • 77eda90 codec: json: document behaviour differences vs encoding/json package
  • 48ba79b codec: expose Handle.Name() via (En|De)coder, for general use (as needed)
  • 1acedc2 codec: cbor: cbor: use fmtTime instead of time.Format for RFC3339Nano
  • a315d04 codec: nit: clean up some comments
  • 126da48 shorter doc comments for fully-deprecated (ignored) fields/methods (#397)
  • f7f63a0 CBOR: Reject malformed and invalid indefinite-length strings (#405)
  • Additional commits viewable in compare view

Updates golang.org/x/arch from 0.3.0 to 0.7.0

Commits
  • a850570 x86avxgen/testdata/xedpath: replace "INTEL CONFIDENTIAL" files
  • a6bdeed arm/armspec: remove obsolete comment
  • 05c9512 all: update go directive to 1.18
  • b6e8753 all: gofmt format
  • 060bf14 x86asm: disassemble CMP instruction's arguments in the opposite order
  • See full diff in compare view

Updates golang.org/x/crypto from 0.17.0 to 0.18.0

Commits
  • dbb6ec1 ssh/test: skip tests on darwin that fail on the darwin-amd64-longtest LUCI bu...
  • 403f699 ssh/test: avoid leaking a net.UnixConn in server.TryDialWithAddr
  • 055043d go.mod: update golang.org/x dependencies
  • 08396bb internal/poly1305: drop Go 1.12 compatibility
  • See full diff in compare view

Updates golang.org/x/net from 0.19.0 to 0.20.0

Commits
  • cb5b10f go.mod: update golang.org/x dependencies
  • 689bbc7 quic: deflake TestStreamsCreateConcurrency
  • f12db26 internal/quic/cmd/interop: use wget --no-verbose in Dockerfile
  • c136d0c quic: avoid panic when PTO expires and implicitly-created streams exist
  • f9726a9 quic: fix packet size logging
  • c337daf quic: enable qlog output in tests
  • 2b416c3 quic/qlog: create log files with O_EXCL
  • 1e59a7e quic/qlog: correctly write negative durations
  • b0eb4d6 quic: compute pnum len from max ack received, not sent
  • b952594 quic: fix data race in connection close
  • Additional commits viewable in compare view

Updates golang.org/x/sys from 0.15.0 to 0.16.0

Commits
  • 0829ab1 windows: add SetFileValidData
  • 32cdffc unix: don't redefine constants already defined in glibc headers
  • f0c7190 unix: remove extra trailing newlines in zsyscall_openbsd_*.go
  • 5ff87d7 unix: add Netfilter and NFTables constants
  • See full diff in compare view

Updates google.golang.org/protobuf from 1.30.0 to 1.32.0

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 commands and options

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the all group with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/bytedance/sonic](https://github.com/bytedance/sonic) | `1.9.1` | `1.10.2` |
| [github.com/chenzhuoyu/base64x](https://github.com/chenzhuoyu/base64x) | `0.0.0-20221115062448-fe3a3abad311` | `0.0.0-20230717121745-296ad89f973d` |
| [github.com/gabriel-vasile/mimetype](https://github.com/gabriel-vasile/mimetype) | `1.4.2` | `1.4.3` |
| [github.com/go-playground/validator/v10](https://github.com/go-playground/validator) | `10.14.0` | `10.17.0` |
| [github.com/klauspost/cpuid/v2](https://github.com/klauspost/cpuid) | `2.2.4` | `2.2.6` |
| [github.com/leodido/go-urn](https://github.com/leodido/go-urn) | `1.2.4` | `1.4.0` |
| [github.com/pelletier/go-toml/v2](https://github.com/pelletier/go-toml) | `2.0.8` | `2.1.1` |
| [github.com/ugorji/go/codec](https://github.com/ugorji/go) | `1.2.11` | `1.2.12` |
| [golang.org/x/arch](https://github.com/golang/arch) | `0.3.0` | `0.7.0` |
| [golang.org/x/crypto](https://github.com/golang/crypto) | `0.17.0` | `0.18.0` |
| [golang.org/x/net](https://github.com/golang/net) | `0.19.0` | `0.20.0` |
| [golang.org/x/sys](https://github.com/golang/sys) | `0.15.0` | `0.16.0` |
| google.golang.org/protobuf | `1.30.0` | `1.32.0` |


Updates `github.com/bytedance/sonic` from 1.9.1 to 1.10.2
- [Release notes](https://github.com/bytedance/sonic/releases)
- [Commits](bytedance/sonic@v1.9.1...v1.10.2)

Updates `github.com/chenzhuoyu/base64x` from 0.0.0-20221115062448-fe3a3abad311 to 0.0.0-20230717121745-296ad89f973d
- [Commits](https://github.com/chenzhuoyu/base64x/commits)

Updates `github.com/gabriel-vasile/mimetype` from 1.4.2 to 1.4.3
- [Release notes](https://github.com/gabriel-vasile/mimetype/releases)
- [Commits](gabriel-vasile/mimetype@v1.4.2...v1.4.3)

Updates `github.com/go-playground/validator/v10` from 10.14.0 to 10.17.0
- [Release notes](https://github.com/go-playground/validator/releases)
- [Commits](go-playground/validator@v10.14.0...v10.17.0)

Updates `github.com/klauspost/cpuid/v2` from 2.2.4 to 2.2.6
- [Release notes](https://github.com/klauspost/cpuid/releases)
- [Changelog](https://github.com/klauspost/cpuid/blob/master/.goreleaser.yml)
- [Commits](klauspost/cpuid@v2.2.4...v2.2.6)

Updates `github.com/leodido/go-urn` from 1.2.4 to 1.4.0
- [Release notes](https://github.com/leodido/go-urn/releases)
- [Commits](leodido/go-urn@v1.2.4...v1.4.0)

Updates `github.com/pelletier/go-toml/v2` from 2.0.8 to 2.1.1
- [Release notes](https://github.com/pelletier/go-toml/releases)
- [Changelog](https://github.com/pelletier/go-toml/blob/v2/.goreleaser.yaml)
- [Commits](pelletier/go-toml@v2.0.8...v2.1.1)

Updates `github.com/ugorji/go/codec` from 1.2.11 to 1.2.12
- [Release notes](https://github.com/ugorji/go/releases)
- [Commits](ugorji/go@v1.2.11...v1.2.12)

Updates `golang.org/x/arch` from 0.3.0 to 0.7.0
- [Commits](golang/arch@v0.3.0...v0.7.0)

Updates `golang.org/x/crypto` from 0.17.0 to 0.18.0
- [Commits](golang/crypto@v0.17.0...v0.18.0)

Updates `golang.org/x/net` from 0.19.0 to 0.20.0
- [Commits](golang/net@v0.19.0...v0.20.0)

Updates `golang.org/x/sys` from 0.15.0 to 0.16.0
- [Commits](golang/sys@v0.15.0...v0.16.0)

Updates `google.golang.org/protobuf` from 1.30.0 to 1.32.0

---
updated-dependencies:
- dependency-name: github.com/bytedance/sonic
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/chenzhuoyu/base64x
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/gabriel-vasile/mimetype
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/go-playground/validator/v10
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/klauspost/cpuid/v2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/leodido/go-urn
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/pelletier/go-toml/v2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/ugorji/go/codec
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: golang.org/x/arch
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: golang.org/x/crypto
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: golang.org/x/net
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: golang.org/x/sys
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: google.golang.org/protobuf
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Feb 7, 2024
@jakecoffman jakecoffman merged commit d622fe2 into master Feb 17, 2024
1 check passed
@jakecoffman jakecoffman deleted the dependabot/go_modules/all-e109d239c3 branch February 17, 2024 01:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file go Pull requests that update Go code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant