j178 / leetgo

Best LeetCode friend for geek. :snowboarder:
MIT License
527 stars 33 forks source link

chore(deps): bump the all group with 6 updates #289

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 3 months ago

Bumps the all group with 6 updates:

Package From To
github.com/charmbracelet/glamour 0.6.0 0.7.0
github.com/charmbracelet/log 0.3.1 0.4.0
github.com/jedib0t/go-pretty/v6 6.5.4 6.5.6
github.com/pelletier/go-toml/v2 2.1.1 2.2.0
github.com/sashabaranov/go-openai 1.20.2 1.20.4
zombiezen.com/go/sqlite 1.1.2 1.2.0

Updates github.com/charmbracelet/glamour from 0.6.0 to 0.7.0

Release notes

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

v0.7.0

Fixed

Changes

New Contributors

Full Changelog: https://github.com/charmbracelet/glamour/compare/v0.6.0...v0.7.0


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

Commits


Updates github.com/charmbracelet/log from 0.3.1 to 0.4.0

Release notes

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

v0.4.0

Custom Levels

With this release of Log, you can now style your custom level to your liking!

// Define a new level
const SuccessLevel = log.InfoLevel + 1

// Create a style styles := log.DefaultStyles() styles.Levels[SuccessLevel] = lipgloss.NewStyle(). SetString("SUCCESS"). Bold(true). Foreground(lipgloss.Color("42"))

// Set the styles on the default logger log.SetStyles(styles)

// Define your custom func func Success(msg string, args ...any) { log.Default().Log(SuccessLevel, msg, args...) }

Along with that, this release includes some important bug fixes detailed below.

Changelog

New Features

Bug fixes

  • 28193306e6f5a221d00a74fa6e8683ea10ae06be: fix: lazy init default logger (#111) (@​caarlos0)

Dependency updates

  • bcd47385a62a19911e9970bcc96a3431af338160: feat(deps): bump github.com/charmbracelet/lipgloss from 0.9.1 to 0.10.0 (#112) (@​dependabot[bot])
  • 976db2be8ef2dad2071a6f061ea20b3e0df90c54: feat(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 (#108) (@​dependabot[bot])

Documentation updates

  • 87252e4b6fe8ac6e0378a5f6bd10c81cf016478f: docs: Replace function with func in README sample code (@​szktkfm)
  • ac0e6b17de4d9fb40f924721b9be2551b6a3a5b1: docs: direct users to library API (#73) (@​bashbunni)
  • 9d04d2b741a63f044858c77785d81acdd04974c1: docs: style customization updated (#106) (@​ssantoshp)

Other work

  • a4246434f75cb530c9e1ac28656f7d8e887b08f8: Create CODEOWNERS (@​maaslalani)
  • fd1729ad8eb8badce23ad62a2050f33e93b82fd8: Options.CallerFormatter documentation issue (#100) (@​pythonian23)

... (truncated)

Commits
  • d23bea6 fix!: respect time function (#115)
  • bcd4738 feat(deps): bump github.com/charmbracelet/lipgloss from 0.9.1 to 0.10.0 (#112)
  • 2819330 fix: lazy init default logger (#111)
  • ac0e6b1 docs: direct users to library API (#73)
  • 87252e4 docs: Replace function with func in README sample code
  • 976db2b feat(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 (#108)
  • a424643 Create CODEOWNERS
  • 9d04d2b docs: style customization updated (#106)
  • 1f0b8bb chore(deps): bump golangci/golangci-lint-action from 3 to 4 (#105)
  • 7a3834f slog: Don't log if not enabled at level (#103)
  • Additional commits viewable in compare view


Updates github.com/jedib0t/go-pretty/v6 from 6.5.4 to 6.5.6

Release notes

Sourced from github.com/jedib0t/go-pretty/v6's releases.

v6.5.6

What's Changed

Full Changelog: https://github.com/jedib0t/go-pretty/compare/v6.5.5...v6.5.6

v6.5.5

What's Changed

New Contributors

Full Changelog: https://github.com/jedib0t/go-pretty/compare/v6.5.4...v6.5.5

Commits


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

Release notes

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

v2.2.0

What's Changed

What's new

Fixed bugs

Documentation

Other changes

New Contributors

Full Changelog: https://github.com/pelletier/go-toml/compare/v2.1.1...v2.2.0

Commits


Updates github.com/sashabaranov/go-openai from 1.20.2 to 1.20.4

Release notes

Sourced from github.com/sashabaranov/go-openai's releases.

v1.20.4

What's Changed

Full Changelog: https://github.com/sashabaranov/go-openai/compare/v1.20.3...v1.20.4

v1.20.3

What's Changed

New Contributors

Full Changelog: https://github.com/sashabaranov/go-openai/compare/v1.20.2...v1.20.3

Commits


Updates zombiezen.com/go/sqlite from 1.1.2 to 1.2.0

Release notes

Sourced from zombiezen.com/go/sqlite's releases.

1.2.0

Version 1.2.0 adds a sqlitex.Pool.Take method and improves error messages.

Added

  • sqlitex.Pool has a new method Take which returns an error along with a Conn (#83).
  • sqlite.ErrorOffset is a new function that returns the SQL byte offset that an error references.

Changed

  • sqlite.Conn.Prep, sqlite.Conn.Prepare, and sqlite.Conn.PrepareTransient now include position information in error messages if available.
  • Many error messages around statement execution changed their format for better readability. Error messages are not stable API and should not be depended on.

Deprecated

  • The sqlitex.Pool.Get method has been deprecated in favor of the new Take method.

Fixed

  • Error messages no longer duplicate information from their error code (reported in #84).
Changelog

Sourced from zombiezen.com/go/sqlite's changelog.

1.2.0 - 2024-03-27

Version 1.2.0 adds a sqlitex.Pool.Take method and improves error messages.

Added

  • sqlitex.Pool has a new method Take which returns an error along with a Conn (#83).
  • sqlite.ErrorOffset is a new function that returns the SQL byte offset that an error references.

Changed

  • sqlite.Conn.Prep, sqlite.Conn.Prepare, and sqlite.Conn.PrepareTransient now include position information in error messages if available.
  • Many error messages around statement execution changed their format for better readability. Error messages are not stable API and should not be depended on.

Deprecated

  • The sqlitex.Pool.Get method has been deprecated in favor of the new Take method.

Fixed

  • Error messages no longer duplicate information from their error code (reported in #84).
Commits
  • e4d0fa1 Updated release notes for 1.2.0
  • bf59930 Rework errors
  • 6d7acf1 Add sqlite.Pool.Take method
  • 4857f1c Test sqlitex.Execute and sqlite.ExecuteTransient for nil connection behavior
  • See full diff 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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions