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

build(deps): bump the go-mod group across 1 directory with 12 updates #385

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 14, 2024

Bumps the go-mod group with 8 updates in the / directory:

Package From To
github.com/authzed/authzed-go 0.11.2-0.20240320204618-9622b72a72c6 0.12.0
github.com/authzed/spicedb 1.31.0 1.33.0
github.com/charmbracelet/lipgloss 0.10.0 0.11.0
github.com/hamba/avro/v2 2.21.1 2.22.1
github.com/rs/zerolog 1.32.0 1.33.0
github.com/schollz/progressbar/v3 3.14.2 3.14.4
golang.org/x/mod 0.17.0 0.18.0
google.golang.org/protobuf 1.34.1 1.34.2

Updates github.com/authzed/authzed-go from 0.11.2-0.20240320204618-9622b72a72c6 to 0.12.0

Release notes

Sourced from github.com/authzed/authzed-go's releases.

v0.12.0

What's Changed

Full Changelog: authzed/authzed-go@v0.11.1...v0.12.0

Commits

Updates github.com/authzed/spicedb from 1.31.0 to 1.33.0

Release notes

Sourced from github.com/authzed/spicedb's releases.

v1.33.0

Highlights

🪞 Added experimental reflection APIs for reflecting information from SpiceDB schemas ⏩ Improvements in CEL performance

What's Changed

Full Changelog: authzed/spicedb@v1.32.0...v1.33.0

Docker Images

This release is available at authzed/spicedb:v1.33.0, quay.io/authzed/spicedb:v1.33.0, ghcr.io/authzed/spicedb:v1.33.0

v1.32.0

Highlights

🔐 AWS IAM Authentication for Postgres, MySQL datastores ✅ LSP now supports linting rules 🐧 Linux packages now distribute shell completion

What's Changed

New Contributors

... (truncated)

Commits
  • c50701a Merge pull request #1902 from authzed/roadmap
  • f7fcdbc Update ROADMAP.md
  • 44dced9 ROADMAP: init
  • ac76892 Merge pull request #1898 from josephschorr/remove-unused-config
  • d73bd5e Remove unused datastore config
  • 2ccd129 Merge pull request #1892 from josephschorr/spanner-stats
  • d05a0f9 Switch spanner datastore to use the built-in stats table for estimating rel c...
  • 8339620 Merge pull request #1894 from josephschorr/experimental-reflection-apis-part-3
  • c1f0fb2 Add ExperimentalComputablePermissions API
  • 6952b47 Merge pull request #1891 from josephschorr/experimental-reflection-apis-part-2
  • Additional commits viewable in compare view

Updates github.com/charmbracelet/lipgloss from 0.10.0 to 0.11.0

Release notes

Sourced from github.com/charmbracelet/lipgloss's releases.

v0.11.0

Immutable Styles and Raw Speed, Baby

So! The big news in this release is:

  • Style methods will now always return new styles
  • Style and ANSI operations under the hood are faster

There are also a handful of great lil' bug fixes. Read on for more.

Immutable Styles

Every Style method now returns a completely new style with its own underlying data structure no matter what. This means working with Styles is a lot easier. No more need for Copy()!

// Before
s := lipgloss.NewStyle().Bold(true)
newStyle := s.Copy()
// After
s := lipgloss.NewStyle().Bold(true)
newStyle := s // this is a true copy

Okay, but why are styles easier to work with now? Consider this:

// Before
baseStyle := lipgloss.NewStyle().Background(lipgloss.Color("59"))
styleAtRuntime := baseStyle.Copy().Width(m.Width)
// After
baseStyle := lipgloss.NewStyle().Padding(1, 2)
styleAtRuntime := baseStyle.Width(m.Width)

It might seem small, but eliminating the risk of mutations in persistent styles in an enormous usability improvement.

How to upgrade

There's nothing to do, however Style.Copy() is now deprecated and only returns itself, so you can just remove Style.Copy() calls. If you need to just copy a style without any changes to it you can simply b := a.

Faster ANSI

Sometimes watch companies brag about their "in-house" watch movement. Well, now we're bragging about our in-house-amazing x/ansi library by our own @​aymanbagabas. It's a fine-tuned, low-level way to manage ANSI sequencing and, because we're pretty nerdy, we’re super excited about it.


What's Changed

... (truncated)

Commits
  • 5cd858c fix: respect UnderlineSpaces and StrikethroughSpaces (#299)
  • c91ab3e chore(ci): enable gofumpt
  • 83fa9be chore: use x/ansi instead of exp/term
  • ce5323e chore(deps): bump golangci/golangci-lint-action from 5 to 6 (#290)
  • e3596ae chore(ci): test for different GOOS & GOARCH
  • 2fe044a fix: Change the propkeys from int to int64
  • 3ee5dca chore(docs): doc updates with regard to style.Copy() deprecation
  • 517b1a1 fix: remove unused type
  • d2795c7 refactor: replace props map with struct fields (#276)
  • c986440 chore(lint): remove deprecated ifshort linting option
  • Additional commits viewable in compare view

Updates github.com/hamba/avro/v2 from 2.21.1 to 2.22.1

Release notes

Sourced from github.com/hamba/avro/v2's releases.

v2.22.1

What's Changed

New Contributors

Full Changelog: hamba/avro@v2.22.0...v2.22.1

v2.22.0

What's Changed

New Contributors

Full Changelog: hamba/avro@v2.21.1...v2.22.0

Commits

Updates github.com/jzelinskie/cobrautil/v2 from 2.0.0-20231016191810-9f8a4f6d038a to 2.0.0-20240506193431-cec803903353

Commits

Updates github.com/rs/zerolog from 1.32.0 to 1.33.0

Commits

Updates github.com/schollz/progressbar/v3 from 3.14.2 to 3.14.4

Release notes

Sourced from github.com/schollz/progressbar/v3's releases.

v3.14.4

What's Changed

Full Changelog: schollz/progressbar@v3.14.3...v3.14.4

v3.14.3

What's Changed

New Contributors

Full Changelog: schollz/progressbar@v3.14.2...v3.14.3

Commits
  • 1e0fedf Merge pull request #188 from black-night-heron/fix/spinner_finish
  • d42b001 use non-default width in spinner tests
  • 2b335f6 fix: only fill the bar for spinners in Finish()
  • fe6592d chore: update dependencies
  • 35b4e07 Merge pull request #184 from wjf3121/wjf3121/fix_elapsed_time
  • 091201b Merge pull request #183 from babiel/fix-change-max-race
  • 37cfbad Merge pull request #182 from black-night-heron/fix/finish-update-current-bytes
  • 1e76c26 chore: update dependencies
  • 4c4baf0 fix: make elapsedTime option work in non-spinner mode
  • b6dcc23 fix race condition with changing max
  • Additional commits viewable in compare view

Updates golang.org/x/exp from 0.0.0-20240205201215-2c58cdc269a3 to 0.0.0-20240506185415-9bf2ced13842

Commits

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

Commits

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

Commits

Updates google.golang.org/genproto/googleapis/rpc from 0.0.0-20240318140521-94a12d6c2237 to 0.0.0-20240513163218-0867130af1f8

Commits

Updates google.golang.org/protobuf from 1.34.1 to 1.34.2

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 go-mod group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/authzed/authzed-go](https://github.com/authzed/authzed-go) | `0.11.2-0.20240320204618-9622b72a72c6` | `0.12.0` |
| [github.com/authzed/spicedb](https://github.com/authzed/spicedb) | `1.31.0` | `1.33.0` |
| [github.com/charmbracelet/lipgloss](https://github.com/charmbracelet/lipgloss) | `0.10.0` | `0.11.0` |
| [github.com/hamba/avro/v2](https://github.com/hamba/avro) | `2.21.1` | `2.22.1` |
| [github.com/rs/zerolog](https://github.com/rs/zerolog) | `1.32.0` | `1.33.0` |
| [github.com/schollz/progressbar/v3](https://github.com/schollz/progressbar) | `3.14.2` | `3.14.4` |
| [golang.org/x/mod](https://github.com/golang/mod) | `0.17.0` | `0.18.0` |
| google.golang.org/protobuf | `1.34.1` | `1.34.2` |



Updates `github.com/authzed/authzed-go` from 0.11.2-0.20240320204618-9622b72a72c6 to 0.12.0
- [Release notes](https://github.com/authzed/authzed-go/releases)
- [Commits](https://github.com/authzed/authzed-go/commits/v0.12.0)

Updates `github.com/authzed/spicedb` from 1.31.0 to 1.33.0
- [Release notes](https://github.com/authzed/spicedb/releases)
- [Changelog](https://github.com/authzed/spicedb/blob/main/.goreleaser.yml)
- [Commits](authzed/spicedb@v1.31.0...v1.33.0)

Updates `github.com/charmbracelet/lipgloss` from 0.10.0 to 0.11.0
- [Release notes](https://github.com/charmbracelet/lipgloss/releases)
- [Commits](charmbracelet/lipgloss@v0.10.0...v0.11.0)

Updates `github.com/hamba/avro/v2` from 2.21.1 to 2.22.1
- [Release notes](https://github.com/hamba/avro/releases)
- [Commits](hamba/avro@v2.21.1...v2.22.1)

Updates `github.com/jzelinskie/cobrautil/v2` from 2.0.0-20231016191810-9f8a4f6d038a to 2.0.0-20240506193431-cec803903353
- [Release notes](https://github.com/jzelinskie/cobrautil/releases)
- [Commits](https://github.com/jzelinskie/cobrautil/commits)

Updates `github.com/rs/zerolog` from 1.32.0 to 1.33.0
- [Commits](rs/zerolog@v1.32.0...v1.33.0)

Updates `github.com/schollz/progressbar/v3` from 3.14.2 to 3.14.4
- [Release notes](https://github.com/schollz/progressbar/releases)
- [Commits](schollz/progressbar@v3.14.2...v3.14.4)

Updates `golang.org/x/exp` from 0.0.0-20240205201215-2c58cdc269a3 to 0.0.0-20240506185415-9bf2ced13842
- [Commits](https://github.com/golang/exp/commits)

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

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

Updates `google.golang.org/genproto/googleapis/rpc` from 0.0.0-20240318140521-94a12d6c2237 to 0.0.0-20240513163218-0867130af1f8
- [Commits](https://github.com/googleapis/go-genproto/commits)

Updates `google.golang.org/protobuf` from 1.34.1 to 1.34.2

---
updated-dependencies:
- dependency-name: github.com/authzed/authzed-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/authzed/spicedb
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/charmbracelet/lipgloss
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/hamba/avro/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/jzelinskie/cobrautil/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-mod
- dependency-name: github.com/rs/zerolog
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/schollz/progressbar/v3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-mod
- dependency-name: golang.org/x/exp
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-mod
- dependency-name: golang.org/x/mod
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: golang.org/x/term
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: google.golang.org/genproto/googleapis/rpc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-mod
- dependency-name: google.golang.org/protobuf
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-mod
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the area/dependencies Affects dependencies label Jun 14, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 14, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jun 14, 2024
@dependabot dependabot bot deleted the dependabot/go_modules/go-mod-2946bda6de branch June 14, 2024 20:51
@github-actions github-actions bot locked and limited conversation to collaborators Jun 14, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
area/dependencies Affects dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants