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

chore(deps): bump the all group with 9 updates #302

Merged
merged 1 commit into from
Jun 1, 2024

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the all group with 9 updates:

Package From To
github.com/JohannesKaufmann/html-to-markdown 1.5.0 1.6.0
github.com/charmbracelet/bubbletea 0.25.0 0.26.4
github.com/charmbracelet/lipgloss 0.10.0 0.11.0
github.com/fatih/color 1.16.0 1.17.0
github.com/goccy/go-json 0.10.2 0.10.3
github.com/jedib0t/go-pretty/v6 6.5.8 6.5.9
github.com/pelletier/go-toml/v2 2.2.1 2.2.2
github.com/sashabaranov/go-openai 1.23.0 1.24.1
zombiezen.com/go/sqlite 1.2.0 1.3.0

Updates github.com/JohannesKaufmann/html-to-markdown from 1.5.0 to 1.6.0

Release notes

Sourced from github.com/JohannesKaufmann/html-to-markdown's releases.

v1.6.0 - improved YoutubeEmbed

  • Add support for youtube-nocookie.com domain in YoutubeEmbed plugin

Thanks @​devAbreu for submitting a PR 🙏

Commits

Updates github.com/charmbracelet/bubbletea from 0.25.0 to 0.26.4

Release notes

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

v0.26.4

Fix panics! Using program.SetWindowTitle and others may panic if they were called before the program starts.

Also note that program.SetWindowTitle is now deprecated. To set the window title use tea.SetWindowTitle command.

What's Changed

Full Changelog: charmbracelet/bubbletea@v0.26.3...v0.26.4


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

v0.26.3

This is a patch release that prevents tea.WindowSizeMsgs from being fired during altscreen changes on Windows. This was due to the fact that Windows emits a window-size-event on altscreen changes even if the size hand’t changed. Now, we cache the window-size and compare before sending the message to the Model.

What's Changed

Full Changelog: charmbracelet/bubbletea@v0.26.2...v0.26.3


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

v0.26.2

This fixes a small regression that was introduced in v0.26.0 related to the first line on the first render not being displayed correctly. Thank you @​mistakenelf for pointing this out in charmbracelet/bubbletea#1000!

What's Changed

Full Changelog: charmbracelet/bubbletea@v0.26.1...v0.26.2


... (truncated)

Commits
  • eb78a8c fix: program renderer commands (#1030)
  • 5331b83 chore(deps): bump github.com/charmbracelet/lipgloss in /examples (#1025)
  • c900512 chore(deps): bump github.com/charmbracelet/x/ansi from 0.1.1 to 0.1.2 (#1026)
  • 2ac3642 chore(ci): enable gofumpt
  • e656c56 chore(examples): update deps
  • cb801d8 refactor: use x/term and x/ansi for renderer sequences (#962)
  • 09f4ef0 fix(windows): prevent firing multiple window size events
  • 920d07b fix(windows): clean up windows input reader
  • ef4e46c chore(readme): add superfile to 'in the wild' (#985)
  • cb36874 docs: add pug to "in the wild"
  • 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/fatih/color from 1.16.0 to 1.17.0

Release notes

Sourced from github.com/fatih/color's releases.

v1.17.0

What's Changed

New Contributors

Full Changelog: fatih/color@v1.16.0...v1.17.0

Commits
  • b6598b1 Merge pull request #228 from klauspost/fix-println-issue-218
  • 00b1811 Fix multi-parameter println spacing
  • 04994a8 Merge pull request #224 from fatih/dependabot/go_modules/golang.org/x/sys-0.18.0
  • 7526cad Merge branch 'main' into dependabot/go_modules/golang.org/x/sys-0.18.0
  • 8d058ca Merge pull request #222 from fatih/ci-updates
  • 2ac809f Bump golang.org/x/sys from 0.17.0 to 0.18.0
  • 51a7bbf ci: update Go and Staticcheck versions
  • 799c49c Merge pull request #217 from fatih/dependabot/github_actions/actions/setup-go-5
  • f8e0ec9 Merge branch 'main' into dependabot/github_actions/actions/setup-go-5
  • 298abd8 Merge pull request #221 from fatih/dependabot/go_modules/golang.org/x/sys-0.17.0
  • Additional commits viewable in compare view

Updates github.com/goccy/go-json from 0.10.2 to 0.10.3

Release notes

Sourced from github.com/goccy/go-json's releases.

0.10.3

What's Changed

New Contributors

Full Changelog: goccy/go-json@v0.10.2...v0.10.3

Commits

Updates github.com/jedib0t/go-pretty/v6 from 6.5.8 to 6.5.9

Release notes

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

v6.5.9

What's Changed

New Contributors

Full Changelog: jedib0t/go-pretty@v6.5.8...v6.5.9

Commits

Updates github.com/pelletier/go-toml/v2 from 2.2.1 to 2.2.2

Release notes

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

v2.2.2

What's Changed

Fixed bugs

New Contributors

Full Changelog: pelletier/go-toml@v2.2.1...v2.2.2

Commits

Updates github.com/sashabaranov/go-openai from 1.23.0 to 1.24.1

Release notes

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

v1.24.1

What's Changed

New Contributors

Full Changelog: sashabaranov/go-openai@v1.24.0...v1.24.1

v1.24.0

What's Changed

New Contributors

Full Changelog: sashabaranov/go-openai@v1.23.1...v1.24.0

v1.23.1

What's Changed

New Contributors

Full Changelog: sashabaranov/go-openai@v1.23.0...v1.23.1

Commits

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

Release notes

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

1.3.0

Version 1.3 is largely a bug-fix release, but is a minor version change because of the new sqlitemigration.Pool.Take method.

Added

  • sqlitemigration.Pool now has a new method Take so that it implements a common interface with sqlitex.Pool (#97).
  • Documented OpenWAL behavior on sqlite.OpenConn.

Fixed

  • Address low-frequency errors with concurrent use of sqlitemigration (#99).
  • The error returned from sqlitex.NewPool when trying to open an in-memory database now gives correct advice (#92).
Changelog

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

[1.3.0][] - 2024-05-04

Version 1.3 is largely a bug-fix release, but is a minor version change because of the new sqlitemigration.Pool.Take method.

Added

  • sqlitemigration.Pool now has a new method Take so that it implements a common interface with sqlitex.Pool (#97).
  • Documented OpenWAL behavior on sqlite.OpenConn.

Fixed

  • Address low-frequency errors with concurrent use of sqlitemigration (#99).
  • The error returned from sqlitex.NewPool when trying to open an in-memory database now gives correct advice (#92).
Commits
  • a8ad27a Update release notes for 1.3.0
  • 990af03 Add Pool.Take method in sqlitemigration (#97)
  • 1cb3c37 Document OpenWAL behavior
  • 59bb121 Use immediate rather than deferred transaction in sqlitemigration ensureAppID...
  • c60a6c8 Fix error message in sqlitex.NewPool for in-memory databases
  • a82f99e Rework contributing guide to reflect the new nature of the project
  • 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 9 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/JohannesKaufmann/html-to-markdown](https://github.com/JohannesKaufmann/html-to-markdown) | `1.5.0` | `1.6.0` |
| [github.com/charmbracelet/bubbletea](https://github.com/charmbracelet/bubbletea) | `0.25.0` | `0.26.4` |
| [github.com/charmbracelet/lipgloss](https://github.com/charmbracelet/lipgloss) | `0.10.0` | `0.11.0` |
| [github.com/fatih/color](https://github.com/fatih/color) | `1.16.0` | `1.17.0` |
| [github.com/goccy/go-json](https://github.com/goccy/go-json) | `0.10.2` | `0.10.3` |
| [github.com/jedib0t/go-pretty/v6](https://github.com/jedib0t/go-pretty) | `6.5.8` | `6.5.9` |
| [github.com/pelletier/go-toml/v2](https://github.com/pelletier/go-toml) | `2.2.1` | `2.2.2` |
| [github.com/sashabaranov/go-openai](https://github.com/sashabaranov/go-openai) | `1.23.0` | `1.24.1` |
| [zombiezen.com/go/sqlite](https://github.com/zombiezen/go-sqlite) | `1.2.0` | `1.3.0` |


Updates `github.com/JohannesKaufmann/html-to-markdown` from 1.5.0 to 1.6.0
- [Release notes](https://github.com/JohannesKaufmann/html-to-markdown/releases)
- [Commits](JohannesKaufmann/html-to-markdown@v1.5.0...v1.6.0)

Updates `github.com/charmbracelet/bubbletea` from 0.25.0 to 0.26.4
- [Release notes](https://github.com/charmbracelet/bubbletea/releases)
- [Commits](charmbracelet/bubbletea@v0.25.0...v0.26.4)

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/fatih/color` from 1.16.0 to 1.17.0
- [Release notes](https://github.com/fatih/color/releases)
- [Commits](fatih/color@v1.16.0...v1.17.0)

Updates `github.com/goccy/go-json` from 0.10.2 to 0.10.3
- [Release notes](https://github.com/goccy/go-json/releases)
- [Changelog](https://github.com/goccy/go-json/blob/master/CHANGELOG.md)
- [Commits](goccy/go-json@v0.10.2...v0.10.3)

Updates `github.com/jedib0t/go-pretty/v6` from 6.5.8 to 6.5.9
- [Release notes](https://github.com/jedib0t/go-pretty/releases)
- [Commits](jedib0t/go-pretty@v6.5.8...v6.5.9)

Updates `github.com/pelletier/go-toml/v2` from 2.2.1 to 2.2.2
- [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.2.1...v2.2.2)

Updates `github.com/sashabaranov/go-openai` from 1.23.0 to 1.24.1
- [Release notes](https://github.com/sashabaranov/go-openai/releases)
- [Commits](sashabaranov/go-openai@v1.23.0...v1.24.1)

Updates `zombiezen.com/go/sqlite` from 1.2.0 to 1.3.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.2.0...v1.3.0)

---
updated-dependencies:
- dependency-name: github.com/JohannesKaufmann/html-to-markdown
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/charmbracelet/bubbletea
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/charmbracelet/lipgloss
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/fatih/color
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/goccy/go-json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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-patch
  dependency-group: all
- dependency-name: github.com/sashabaranov/go-openai
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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 Jun 1, 2024
@j178 j178 merged commit 3a0fdb0 into master Jun 1, 2024
2 checks passed
@j178 j178 deleted the dependabot/go_modules/all-8e5c3f5a35 branch June 1, 2024 09:50
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.

1 participant