Skip to content

chore: Update non-major dependencies#961

Merged
renovate[bot] merged 2 commits intomasterfrom
renovate/non-major-dependencies
Mar 17, 2025
Merged

chore: Update non-major dependencies#961
renovate[bot] merged 2 commits intomasterfrom
renovate/non-major-dependencies

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Mar 17, 2025

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
github.com/charmbracelet/huh/spinner require digest 2f905c5 -> 0761ac7 age adoption passing confidence
github.com/charmbracelet/lipgloss require minor v1.0.0 -> v1.1.0 age adoption passing confidence
github.com/goravel/framework require patch v1.15.4 -> v1.15.5 age adoption passing confidence
github.com/spf13/viper require minor v1.19.0 -> v1.20.0 age adoption passing confidence

Release Notes

charmbracelet/lipgloss (github.com/charmbracelet/lipgloss)

v1.1.0

Compare Source

Tables, Improved

In this release, the inimitable @​andreynering and @​bashbunni majorly overhauled on the table sizing and content wrapping algorithms. Tables will now be much smarter on deciding the ideal width of each column, and contents now wraps by default inside cells.

// Table content wraps by default.
t := table.New().
    Headers(someHeaders...).
    Rows(someRows...).
    Width(80)

fmt.Println(t)
// Actually, let's not wrap the content.
t := table.New().
    Headers(someHeaders...).
    Rows(someRows...).
    Width(80).
    Wrap(false)

fmt.Println(t)

New Border Styles

Also, we added two new border styles that you can use to generate tables in Markdown and ASCII styles.

Markdown Tables

To render tables correctly for Markdown you'll want to use lipgloss.MarkdownBorder and disable the top and bottom borders.

t := table.New().
    Headers(someHeaders...).
    Rows(someRows).
    Border(lipgloss.MarkdownBorder()).
    BorderTop(false).
    BorderBottom(false)

fmt.Println(t)
ASCII Tables

To render an ASCII-style table use lipgloss.ASCIIBorder.

t := table.New().
    Headers(someHeaders...).
    Rows(someRows).
    Border(lipgloss.ASCIIBorder())

fmt.Println(t)

Thanks everyone

Special thanks to @​aymanbagabas, @​bashbunni, @​andreynering, and @​caarlos0 for or all the work on this release!


Changelog

New Features
Bug fixes
Other work

The Charm logo

Thoughts? Questions? We love hearing from you. Feel free to reach out on Twitter, The Fediverse, or on Discord.

goravel/framework (github.com/goravel/framework)

v1.15.5

Compare Source

What's Changed

Full Changelog: v1.15.4...v1.15.5

spf13/viper (github.com/spf13/viper)

v1.20.0

Compare Source

[!WARNING]
This release includes a few minor breaking changes. Read the upgrade guide for details.

What's Changed

Exciting New Features 🎉
Enhancements 🚀
Bug Fixes 🐛
Breaking Changes 🛠
Dependency Updates ⬆️
Other Changes

New Contributors

Full Changelog: spf13/viper@v1.19.0...v1.20.0


Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from a team as a code owner March 17, 2025 01:37
@renovate renovate bot enabled auto-merge (squash) March 17, 2025 01:37
@renovate
Copy link
Contributor Author

renovate bot commented Mar 17, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: tests/go.sum
Command failed: go get -d -t ./...
go: -d flag is deprecated. -d=true is a no-op
go: downloading github.com/goravel/framework v1.15.5
go: downloading github.com/goravel/mysql v0.0.0-20250316083353-0799b646c6a8
go: downloading github.com/goravel/postgres v0.0.2-0.20250309093253-9f6835a6a3cd
go: downloading github.com/goravel/sqlite v0.0.0-20250309093411-f33520b3a6ae
go: downloading github.com/goravel/sqlserver v0.0.0-20250309093235-f8673bca5608
go: downloading github.com/glebarez/sqlite v1.11.0
go: downloading gorm.io/driver/mysql v1.5.7
go: downloading gorm.io/driver/postgres v1.5.11
go: downloading gorm.io/driver/sqlserver v1.5.4
go: downloading gorm.io/plugin/dbresolver v1.5.3
go: downloading github.com/Masterminds/semver/v3 v3.3.1
go: downloading github.com/golang-migrate/migrate/v4 v4.18.1
go: downloading github.com/glebarez/go-sqlite v1.22.0
go: downloading modernc.org/sqlite v1.34.5
go: downloading github.com/jackc/pgx/v5 v5.7.2
go: downloading github.com/microsoft/go-mssqldb v1.8.0
go: downloading github.com/hashicorp/go-multierror v1.1.1
go: downloading go.uber.org/atomic v1.11.0
go: downloading github.com/Azure/go-autorest/autorest/adal v0.9.16
go: downloading github.com/Azure/go-autorest v14.2.0+incompatible
go: downloading modernc.org/libc v1.61.11
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9
go: downloading github.com/golang-sql/sqlexp v0.1.0
go: downloading github.com/hashicorp/errwrap v1.1.0
go: downloading github.com/Azure/go-autorest/autorest/date v0.3.0
go: downloading github.com/Azure/go-autorest/logger v0.2.1
go: downloading github.com/Azure/go-autorest/tracing v0.6.0
go: downloading github.com/golang-jwt/jwt/v4 v4.5.1
go: downloading github.com/ncruces/go-strftime v0.1.9
go: downloading modernc.org/mathutil v1.7.1
go: downloading modernc.org/memory v1.8.2
go: downloading github.com/jackc/puddle/v2 v2.2.2
go: downloading github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec
go: github.com/goravel/framework/tests imports
	github.com/goravel/framework/contracts/database/db: cannot find module providing package github.com/goravel/framework/contracts/database/db
go: github.com/goravel/framework/tests imports
	github.com/goravel/framework/contracts/database/driver: cannot find module providing package github.com/goravel/framework/contracts/database/driver
go: github.com/goravel/framework/tests imports
	github.com/goravel/framework/contracts/testing/docker: cannot find module providing package github.com/goravel/framework/contracts/testing/docker
go: github.com/goravel/framework/tests imports
	github.com/goravel/framework/database/logger: cannot find module providing package github.com/goravel/framework/database/logger
go: github.com/goravel/framework/tests imports
	github.com/goravel/mysql imports
	github.com/goravel/framework/support/process: cannot find module providing package github.com/goravel/framework/support/process
go: warning: github.com/Azure/go-autorest/autorest/adal@v0.9.16: retracted by module author: retracted due to token refresh errors
go: to switch to the latest unretracted version, run:
	go get github.com/Azure/go-autorest/autorest/adal@latest

@renovate renovate bot force-pushed the renovate/non-major-dependencies branch from 2a01e80 to 119b0e6 Compare March 17, 2025 01:50
@codecov
Copy link

codecov bot commented Mar 17, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 69.14%. Comparing base (064e4c7) to head (4b3fe58).
Report is 1 commits behind head on master.

Additional details and impacted files
@@           Coverage Diff           @@
##           master     #961   +/-   ##
=======================================
  Coverage   69.14%   69.14%           
=======================================
  Files         158      158           
  Lines       10607    10607           
=======================================
  Hits         7334     7334           
  Misses       2942     2942           
  Partials      331      331           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@renovate
Copy link
Contributor Author

renovate bot commented Mar 17, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@renovate renovate bot merged commit 8a80c4c into master Mar 17, 2025
13 checks passed
@renovate renovate bot deleted the renovate/non-major-dependencies branch March 17, 2025 01:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant