这是indexloc提供的服务,不要输入任何密码
Skip to content

Conversation

@dependabot
Copy link
Contributor

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

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: charmbracelet/glamour@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: jedib0t/go-pretty@v6.5.5...v6.5.6

v6.5.5

What's Changed

New Contributors

Full Changelog: jedib0t/go-pretty@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: pelletier/go-toml@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: sashabaranov/go-openai@v1.20.3...v1.20.4

v1.20.3

What's Changed

New Contributors

Full Changelog: sashabaranov/go-openai@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 <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 all group with 6 updates:

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


Updates `github.com/charmbracelet/glamour` from 0.6.0 to 0.7.0
- [Release notes](https://github.com/charmbracelet/glamour/releases)
- [Commits](charmbracelet/glamour@v0.6.0...v0.7.0)

Updates `github.com/charmbracelet/log` from 0.3.1 to 0.4.0
- [Release notes](https://github.com/charmbracelet/log/releases)
- [Commits](charmbracelet/log@v0.3.1...v0.4.0)

Updates `github.com/jedib0t/go-pretty/v6` from 6.5.4 to 6.5.6
- [Release notes](https://github.com/jedib0t/go-pretty/releases)
- [Commits](jedib0t/go-pretty@v6.5.4...v6.5.6)

Updates `github.com/pelletier/go-toml/v2` from 2.1.1 to 2.2.0
- [Release notes](https://github.com/pelletier/go-toml/releases)
- [Changelog](https://github.com/pelletier/go-toml/blob/v2/.goreleaser.yaml)
- [Commits](pelletier/go-toml@v2.1.1...v2.2.0)

Updates `github.com/sashabaranov/go-openai` from 1.20.2 to 1.20.4
- [Release notes](https://github.com/sashabaranov/go-openai/releases)
- [Commits](sashabaranov/go-openai@v1.20.2...v1.20.4)

Updates `zombiezen.com/go/sqlite` from 1.1.2 to 1.2.0
- [Release notes](https://github.com/zombiezen/go-sqlite/releases)
- [Changelog](https://github.com/zombiezen/go-sqlite/blob/main/CHANGELOG.md)
- [Commits](zombiezen/go-sqlite@v1.1.2...v1.2.0)

---
updated-dependencies:
- dependency-name: github.com/charmbracelet/glamour
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/charmbracelet/log
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/jedib0t/go-pretty/v6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/pelletier/go-toml/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/sashabaranov/go-openai
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: zombiezen.com/go/sqlite
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Apr 1, 2024
@j178 j178 merged commit 33357ac into master Apr 1, 2024
@j178 j178 deleted the dependabot/go_modules/all-ed9ce9ebd4 branch April 1, 2024 10:52
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.

2 participants