Skip to content

Conversation

@dependabot
Copy link
Contributor

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

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

Package From To
github.com/charmbracelet/lipgloss 0.9.1 0.10.0
github.com/hamba/avro/v2 2.20.0 2.21.0
github.com/rodaine/table 1.1.1 1.2.0
golang.org/x/mod 0.16.0 0.17.0
golang.org/x/sync 0.6.0 0.7.0
google.golang.org/grpc 1.62.1 1.63.2

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

Release notes

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

v0.10.0

String Transforms 💄

Lip Gloss v0.10.0 features a brand new Transform function for Styles to alter strings at render time. As well as some bug fixes, like ANSI-aware table cell truncation. 🧹

Simply define a Transform function as func (string) string and apply it to any style:

// Example:
s := NewStyle().Transform(strings.ToUpper)
fmt.Println(s.Render("raow!") // "RAOW!"

Or, if you prefer:

// Example:
reverse := func(s string) string {
    n := 0
    rune := make([]rune, len(s))
    for _, r := range s {
        rune[n] = r
	n++
    }
    rune = rune[0:n]
    for i := 0; i < n/2; i++ {
        rune[i], rune[n-1-i] = rune[n-1-i], rune[i]
    }
    return string(rune)
}
s := NewStyle().Transform(reverse)
fmt.Println(s.Render("The quick brown 狐 jumped over the lazy 犬")
// "犬 yzal eht revo depmuj 狐 nworb kciuq ehT",

What's Changed?

New Contributors

... (truncated)

Commits
  • 439c06f docs(table): ANSI-aware cell example
  • 652c37d feat(deps): bump github.com/rivo/uniseg from 0.4.6 to 0.4.7 (#262)
  • 8464a7c chore(deps): bump golangci/golangci-lint-action from 3 to 4 (#259)
  • 207eb25 Create CODEOWNERS
  • 13584f2 chore: go mod tidy
  • bb7ffe2 fix(ci): update coverage workflow
  • 2745d8a Improve maximum width of characters in a string (#257)
  • de46012 Fix truncate of table cells containing ANSI (#256)
  • 92946d3 chore: refactor padding functions (#254)
  • 59874c2 chore: apply gofumpt to all files (#255)
  • Additional commits viewable in compare view

Updates github.com/hamba/avro/v2 from 2.20.0 to 2.21.0

Release notes

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

v2.21.0

What's Changed

New Contributors

Full Changelog: hamba/avro@v2.20.1...v2.21.0

v2.20.1

What's Changed

Full Changelog: hamba/avro@v2.20.0...v2.20.1

Commits
  • 2461d45 fix: reader int/long setting head > tail (#385)
  • 84f9b10 fix: readByte returns errors on unexpected EOF (#383)
  • 141e857 fix: reader returns errors on unexpected EOF (#382)
  • f138d7f fix: handle short read errors on arrays and maps (#379)
  • b43fe48 feat: add max slice alloc size config (#376)
  • 0b21284 Check for max allocation (#374)
  • 7a2eb5f feat: support slices for nullable unions (#372)
  • 15d2425 chore: bump github.com/klauspost/compress from 1.17.7 to 1.17.8 in the all gr...
  • 4894c0b feat: error on invalid type/logicalType (#368)
  • fd90800 chore: bump golangci-lint to v1.57.0 (#365)
  • Additional commits viewable in compare view

Updates github.com/rodaine/table from 1.1.1 to 1.2.0

Release notes

Sourced from github.com/rodaine/table's releases.

v1.2.0

What's Changed

New Contributors

Full Changelog: rodaine/table@v1.1.1...v1.2.0

Commits

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

Commits
  • aa51b25 modfile: do not collapse if there are unattached comments within blocks
  • 87140ec sumdb/tlog: make NewTiles only generate strictly necessary tiles
  • 18d3f56 modfile: fix crash on AddGoStmt in empty File
  • See full diff in compare view

Updates golang.org/x/sync from 0.6.0 to 0.7.0

Commits

Updates google.golang.org/grpc from 1.62.1 to 1.63.2

Release notes

Sourced from google.golang.org/grpc's releases.

Release 1.63.2

Bugs

  • Fix the user agent string

Release 1.63.1

Bugs

  • grpc: fixed subchannel log messages to properly reference the parent channel (#7101)

API Changes

  • grpc: remove Deprecated tag from Dial and DialContext; these will be deprecated in v1.64 instead (#7103)

Release 1.63.0

Behavior Changes

  • grpc: Return canonical target string from resolver.Address.String() (experimental) (#6923)
  • client & server: when using write buffer pooling, use input value for buffer size instead of size*2 (#6983)

New Features

  • grpc: add ClientConn.CanonicalTarget() to return the canonical target string. (#7006)
  • xds: implement LRS named metrics support (gRFC A64) (#7027)
  • grpc: introduce grpc.NewClient to allow users to create new clients in idle mode and with "dns" as the default resolver (#7010)

API Changes

  • grpc: stabilize experimental method ClientConn.Target() (#7006)

Bug Fixes

  • xds: fix an issue that would cause the client to send an empty list of resources for LDS/CDS upon reconnecting with the management server (#7026)
  • server: Fix some errors returned by a server when using a grpc.Server as an http.Handler with the Go stdlib HTTP server (#6989)
  • resolver/dns: add SetResolvingTimeout to allow configuring the DNS resolver's global timeout (#6917)
  • Set the security level of Windows named pipes to NoSecurity (#6956)

Release 1.62.2

Dependencies

Commits
  • d32e66c Change version to 1.63.2 (#7104)
  • 92f6dd0 channelz: pass parent pointer instead of parent ID to RegisterSubChannel (#7101)
  • 0f6ef0f grpc: un-deprecate Dial and DialContext
  • 58dc749 Change version to 1.63.1-dev (#7051)
  • c68f456 Change version to 1.63.0 (#7050)
  • 6369167 *: update http2 dependency (#7082)
  • 8854761 cherry-pick: channelz: fix race accessing channelMap without lock (#7079) (#7...
  • e62770d channelz: add LocalAddr to listen sockets and test (#7062) (#7063)
  • 4ffccf1 googlec2p: use xdstp style template for client LDS resource name (#7048)
  • faf9964 gracefulswitch: add ParseConfig and make UpdateClientConnState call SwitchTo ...
  • 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 go-mod group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/charmbracelet/lipgloss](https://github.com/charmbracelet/lipgloss) | `0.9.1` | `0.10.0` |
| [github.com/hamba/avro/v2](https://github.com/hamba/avro) | `2.20.0` | `2.21.0` |
| [github.com/rodaine/table](https://github.com/rodaine/table) | `1.1.1` | `1.2.0` |
| [golang.org/x/mod](https://github.com/golang/mod) | `0.16.0` | `0.17.0` |
| [golang.org/x/sync](https://github.com/golang/sync) | `0.6.0` | `0.7.0` |
| [google.golang.org/grpc](https://github.com/grpc/grpc-go) | `1.62.1` | `1.63.2` |



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

Updates `github.com/hamba/avro/v2` from 2.20.0 to 2.21.0
- [Release notes](https://github.com/hamba/avro/releases)
- [Commits](hamba/avro@v2.20.0...v2.21.0)

Updates `github.com/rodaine/table` from 1.1.1 to 1.2.0
- [Release notes](https://github.com/rodaine/table/releases)
- [Commits](rodaine/table@v1.1.1...v1.2.0)

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

Updates `golang.org/x/sync` from 0.6.0 to 0.7.0
- [Commits](golang/sync@v0.6.0...v0.7.0)

Updates `google.golang.org/grpc` from 1.62.1 to 1.63.2
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.62.1...v1.63.2)

---
updated-dependencies:
- 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/rodaine/table
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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/sync
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: google.golang.org/grpc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the area/dependencies Affects dependencies label Apr 29, 2024
@vroldanbet vroldanbet enabled auto-merge April 29, 2024 16:13
@vroldanbet vroldanbet added this pull request to the merge queue Apr 29, 2024
Merged via the queue into main with commit 8937cf9 Apr 29, 2024
@vroldanbet vroldanbet deleted the dependabot/go_modules/go-mod-1c01927547 branch April 29, 2024 16:18
@github-actions github-actions bot locked and limited conversation to collaborators Apr 29, 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.

2 participants