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

chore(deps): bump the dependencies group with 8 updates #47

Merged
merged 1 commit into from
Apr 2, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 2, 2024

Bumps the dependencies group with 8 updates:

Package From To
github.com/BurntSushi/toml 1.2.1 1.3.2
github.com/labstack/gommon 0.4.0 0.4.2
github.com/mattn/go-isatty 0.0.16 0.0.20
github.com/nicksnyder/go-i18n/v2 2.2.0 2.4.0
github.com/spf13/cast 1.5.0 1.6.0
github.com/spf13/cobra 1.6.1 1.8.0
go.uber.org/zap 1.23.0 1.27.0
golang.org/x/text 0.4.0 0.14.0

Updates github.com/BurntSushi/toml from 1.2.1 to 1.3.2

Release notes

Sourced from github.com/BurntSushi/toml's releases.

v1.3.2

Fix reading BURNTSUSHI_TOML_110 again 😅 The fix for 1.3.1 caused a race issue with multiple decodes being run in parallel.

v1.3.1

This fixes two small bugs:

  • The BURNTSUSHI_TOML_110 environment variable would be checked on package import, rather than Decode().

    This meant that setting os.Setenv("BURNTSUSHI_TOML_110", "") had no effect, as it happens after the import.

  • Fix order of Meta.Keys() for inline tables (this has been an issue since support for inline tables was added).

v1.3.0

New features:

  • Support upcoming TOML 1.1

    While it looks like TOML 1.1 is mostly stable and I don't expect any further major changes, there are NO compatibility guarantees as it is NOT yet released and anything can still change.

    To use it, set the BURNTSUSHI_TOML_110 environment variable to any value, which can be done either with os.SetEnv() or by the user running a program.

    A full list is changes is available in the TOML ChangeLog; the two most notable ones are that newlines and trailing commas are now allowed in inline tables, and Unicode in bare keys can now be used – this is now a valid document:

    lëttërs = {
      ä = "a with diaeresis",
      è = "e with accent grave",
    }
    
  • Allow MarshalTOML and MarshalText to be used on the document type itself, instead of only fields (#383).

Bufixes:

  • \ escapes at the end of line weren't processed correctly in multiline strings (#372).

  • Read over UTF-8 BOM (#381).

  • omitempty struct tag did not work for pointer values (#371).

  • Fix encoding anonymous structs on 32bit systems (#374).

Commits
  • b324da5 Store BURNTSUSHI_TOML_110 in parser and lexer
  • d4c441a Add benchmark for larger document
  • 96fcef2 Check BURNTSUSHI_TOML_110 in the parser
  • 743df59 Fix encode benchmark
  • 60801d0 Correctly set the Meta.Keys() order for inline tables
  • c859a22 Remove stray comment
  • d9b9172 Evaluate omitempty against un-dereferenced fields (#392)
  • 5073d46 Test Go 1.20 in CI
  • a2cbdda Fix line-ending backslash whitespace escaping for multiline strings (#391)
  • d56d9f6 Allow MarshalTOML and MarshalText to be used on the document type itself
  • Additional commits viewable in compare view

Updates github.com/labstack/gommon from 0.4.0 to 0.4.2

Release notes

Sourced from github.com/labstack/gommon's releases.

v0.4.2 update deps

  • update deps #58

v0.4.1 small updates

  • feat(random): use crypto/rand for random string generator #55

  • update deps and CI flow #57

  • update deps #54

Commits

Updates github.com/mattn/go-isatty from 0.0.16 to 0.0.20

Commits
  • a7c0235 Merge pull request #74 from dkegel-fastly/dkegel-bug73-tinygo
  • 13f3590 Adjust build tags to allow building on tinygo; for #73.
  • c067b4f Merge pull request #86 from dolmen-go/testing-log-result
  • 42997b3 tests: log value of IsTerminal
  • 72a590e Merge pull request #82 from dolmen-go/upgrade-x-sys-tagged
  • c84e2cc Merge pull request #83 from dolmen-go/ci-add-go1.20
  • 77d7704 CI: add Go 1.20
  • 1f92190 CI: drop Go 1.15, 1.16
  • ddec212 deps: use a tagged version of golang.org/x/sys
  • ed75e61 Merge pull request #78 from sthibaul/master
  • Additional commits viewable in compare view

Updates github.com/nicksnyder/go-i18n/v2 from 2.2.0 to 2.4.0

Release notes

Sourced from github.com/nicksnyder/go-i18n/v2's releases.

v2.4.0

What's new

This release adds support for configurable template parsers in nicksnyder/go-i18n#317.

By setting TemplateParser on LocalizeConfig it is now possible to:

Full Changelog: nicksnyder/go-i18n@v2.3.0...v2.4.0

v2.3.0

New features

Bug fixes

Maintenance

New Contributors

Full Changelog: nicksnyder/go-i18n@v2.2.2...v2.3.0

v2.2.2

New features

Bug fixes

Maintenance

New Contributors

... (truncated)

Commits

Updates github.com/spf13/cast from 1.5.0 to 1.6.0

Release notes

Sourced from github.com/spf13/cast's releases.

v1.6.0

What's Changed

Full Changelog: spf13/cast@v1.5.1...v1.6.0

v1.5.1

What's Changed

New Contributors

Full Changelog: spf13/cast@v1.5.0...v1.5.1

Commits
  • 48ddde5 Bump Go version in go.mod to 1.19
  • b09a6f8 deps: update to github.com/frankban/quicktest v1.14.6
  • 268227c github: Replace the test workflow with the one used in Afero
  • e9ba3ce Merge pull request #190 from spf13/updates
  • 9d37e3a ci: fix dependabot config
  • a441ac7 ci: pin actions versions, fix checkout order
  • 9c5e91d docs: update badges
  • c49a664 ci: rename ci.yml to ci.yaml
  • 0b4af69 Merge pull request #185 from spf13/dependabot/go_modules/github.com/frankban/...
  • 235f028 Merge pull request #180 from spf13/dependabot/github_actions/actions/setup-go-4
  • Additional commits viewable in compare view

Updates github.com/spf13/cobra from 1.6.1 to 1.8.0

Release notes

Sourced from github.com/spf13/cobra's releases.

v1.8.0

✨ Features

🐛 Bug fixes

🔧 Maintenance

🧪 Testing & CI/CD

✏️ Documentation


Thank you everyone who contributed to this release and all your hard work! Cobra and this community would never be possible without all of you!!!! 🐍

Full Changelog: spf13/cobra@v1.7.0...v1.8.0

v1.7.0

... (truncated)

Commits
  • a0a6ae0 Improve API to get flag completion function (#2063)
  • 890302a Support usage as plugin for tools like kubectl (#2018)
  • 48cea5c build(deps): bump actions/checkout from 3 to 4 (#2028)
  • 22953d8 Replace all non-alphanumerics in active help env var program prefix (#1940)
  • 00b68a1 Add tests for flag completion registration (#2053)
  • b711e87 Don't complete --help flag when flag parsing disabled (#2061)
  • 8b1eba4 Fix linter errors (#2052)
  • 4cafa37 Allow running persistent run hooks of all parents (#2044)
  • 5c962a2 build(deps): bump github.com/cpuguy83/go-md2man/v2 from 2.0.2 to 2.0.3 (#2047)
  • efe8fa3 build(deps): bump actions/setup-go from 3 to 4 (#1934)
  • Additional commits viewable in compare view

Updates go.uber.org/zap from 1.23.0 to 1.27.0

Release notes

Sourced from go.uber.org/zap's releases.

v1.27.0

Enhancements:

  • #1378[]: Add WithLazy method for SugaredLogger.
  • #1399[]: zaptest: Add NewTestingWriter for customizing TestingWriter with more flexibility than NewLogger.
  • #1406[]: Add Log, Logw, Logln methods for SugaredLogger.
  • #1416[]: Add WithPanicHook option for testing panic logs.

Thanks to @​defval, @​dimmo, @​arxeiss, and @​MKrupauskas for their contributions to this release.

#1378: uber-go/zap#1378 #1399: uber-go/zap#1399 #1406: uber-go/zap#1406 #1416: uber-go/zap#1416

v1.26.0

Enhancements:

  • #1297[]: Add Dict as a Field.
  • #1319[]: Add WithLazy method to Logger which lazily evaluates the structured context.
  • #1350[]: String encoding is much (~50%) faster now.

Thanks to @​hhk7734, @​jquirke, @​cdvr1993 for their contributions to this release.

#1297: uber-go/zap#1297 #1319: uber-go/zap#1319 #1350: uber-go/zap#1350

v1.25.0

This release contains several improvements including performance, API additions, and two new experimental packages whose APIs are unstable and may change in the future.

Enhancements:

  • #1246[]: Add zap/exp/zapslog package for integration with slog.
  • #1273[]: Add Name to Logger which returns the Logger's name if one is set.
  • #1281[]: Add zap/exp/expfield package which contains helper methods Str and Strs for constructing String-like zap.Fields.
  • #1310[]: Reduce stack size on Any.

Thanks to @​knight42, @​dzakaammar, @​bcspragu, and @​rexywork for their contributions to this release.

#1246: uber-go/zap#1246 #1273: uber-go/zap#1273 #1281: uber-go/zap#1281 #1310: uber-go/zap#1310

v1.24.0

... (truncated)

Changelog

Sourced from go.uber.org/zap's changelog.

1.27.0 (20 Feb 2024)

Enhancements:

  • #1378[]: Add WithLazy method for SugaredLogger.
  • #1399[]: zaptest: Add NewTestingWriter for customizing TestingWriter with more flexibility than NewLogger.
  • #1406[]: Add Log, Logw, Logln methods for SugaredLogger.
  • #1416[]: Add WithPanicHook option for testing panic logs.

Thanks to @​defval, @​dimmo, @​arxeiss, and @​MKrupauskas for their contributions to this release.

#1378: uber-go/zap#1378 #1399: uber-go/zap#1399 #1406: uber-go/zap#1406 #1416: uber-go/zap#1416

1.26.0 (14 Sep 2023)

Enhancements:

  • #1297[]: Add Dict as a Field.
  • #1319[]: Add WithLazy method to Logger which lazily evaluates the structured context.
  • #1350[]: String encoding is much (~50%) faster now.

Thanks to @​hhk7734, @​jquirke, and @​cdvr1993 for their contributions to this release.

#1297: uber-go/zap#1297 #1319: uber-go/zap#1319 #1350: uber-go/zap#1350

1.25.0 (1 Aug 2023)

This release contains several improvements including performance, API additions, and two new experimental packages whose APIs are unstable and may change in the future.

Enhancements:

  • #1246[]: Add zap/exp/zapslog package for integration with slog.
  • #1273[]: Add Name to Logger which returns the Logger's name if one is set.
  • #1281[]: Add zap/exp/expfield package which contains helper methods Str and Strs for constructing String-like zap.Fields.
  • #1310[]: Reduce stack size on Any.

Thanks to @​knight42, @​dzakaammar, @​bcspragu, and @​rexywork for their contributions to this release.

#1246: uber-go/zap#1246 #1273: uber-go/zap#1273 #1281: uber-go/zap#1281 #1310: uber-go/zap#1310

1.24.0 (30 Nov 2022)

... (truncated)

Commits

Updates golang.org/x/text from 0.4.0 to 0.14.0

Commits
  • 6c97a16 all: update go directive to 1.18
  • f488e19 unicode/norm: fix function name on comment
  • fb697c0 cmd/gotext: actually use -dir flag
  • f3e69ed cmd/gotext: fix misbehaviors
  • ab07ad1 all: remove repetitive words
  • e503480 encoding/japanese, language: shorten very long sub-test names
  • 2df65d7 all: regenerate for Unicode 15.0.0
  • e3c038a all: prepare for Unicode 15.0.0
  • 3a7a255 internal/export/idna: make more space for mapping index
  • d61dd50 go.mod: delete repeated "indirect"
  • Additional commits viewable in compare view

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 dependencies group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/BurntSushi/toml](https://github.com/BurntSushi/toml) | `1.2.1` | `1.3.2` |
| [github.com/labstack/gommon](https://github.com/labstack/gommon) | `0.4.0` | `0.4.2` |
| [github.com/mattn/go-isatty](https://github.com/mattn/go-isatty) | `0.0.16` | `0.0.20` |
| [github.com/nicksnyder/go-i18n/v2](https://github.com/nicksnyder/go-i18n) | `2.2.0` | `2.4.0` |
| [github.com/spf13/cast](https://github.com/spf13/cast) | `1.5.0` | `1.6.0` |
| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.6.1` | `1.8.0` |
| [go.uber.org/zap](https://github.com/uber-go/zap) | `1.23.0` | `1.27.0` |
| [golang.org/x/text](https://github.com/golang/text) | `0.4.0` | `0.14.0` |


Updates `github.com/BurntSushi/toml` from 1.2.1 to 1.3.2
- [Release notes](https://github.com/BurntSushi/toml/releases)
- [Commits](BurntSushi/toml@v1.2.1...v1.3.2)

Updates `github.com/labstack/gommon` from 0.4.0 to 0.4.2
- [Release notes](https://github.com/labstack/gommon/releases)
- [Commits](labstack/gommon@v0.4.0...v0.4.2)

Updates `github.com/mattn/go-isatty` from 0.0.16 to 0.0.20
- [Commits](mattn/go-isatty@v0.0.16...v0.0.20)

Updates `github.com/nicksnyder/go-i18n/v2` from 2.2.0 to 2.4.0
- [Release notes](https://github.com/nicksnyder/go-i18n/releases)
- [Changelog](https://github.com/nicksnyder/go-i18n/blob/main/CHANGELOG.md)
- [Commits](nicksnyder/go-i18n@v2.2.0...v2.4.0)

Updates `github.com/spf13/cast` from 1.5.0 to 1.6.0
- [Release notes](https://github.com/spf13/cast/releases)
- [Commits](spf13/cast@v1.5.0...v1.6.0)

Updates `github.com/spf13/cobra` from 1.6.1 to 1.8.0
- [Release notes](https://github.com/spf13/cobra/releases)
- [Commits](spf13/cobra@v1.6.1...v1.8.0)

Updates `go.uber.org/zap` from 1.23.0 to 1.27.0
- [Release notes](https://github.com/uber-go/zap/releases)
- [Changelog](https://github.com/uber-go/zap/blob/master/CHANGELOG.md)
- [Commits](uber-go/zap@v1.23.0...v1.27.0)

Updates `golang.org/x/text` from 0.4.0 to 0.14.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.4.0...v0.14.0)

---
updated-dependencies:
- dependency-name: github.com/BurntSushi/toml
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: github.com/labstack/gommon
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: github.com/mattn/go-isatty
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: github.com/nicksnyder/go-i18n/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: github.com/spf13/cast
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: github.com/spf13/cobra
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: go.uber.org/zap
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: golang.org/x/text
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

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 Apr 2, 2024
@k1LoW k1LoW merged commit 6d9fb42 into main Apr 2, 2024
1 check passed
@k1LoW k1LoW deleted the dependabot/go_modules/dependencies-a35abeb399 branch April 2, 2024 07:55
@github-actions github-actions bot mentioned this pull request Apr 2, 2024
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