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 5 updates #309

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the all group with 5 updates:

Package From To
github.com/PuerkitoBio/goquery 1.9.2 1.10.0
github.com/charmbracelet/bubbles 0.19.0 0.20.0
github.com/charmbracelet/bubbletea 0.27.0 1.1.0
github.com/sashabaranov/go-openai 1.29.0 1.31.0
zombiezen.com/go/sqlite 1.3.0 1.4.0

Updates github.com/PuerkitoBio/goquery from 1.9.2 to 1.10.0

Release notes

Sourced from github.com/PuerkitoBio/goquery's releases.

v1.10.0

Add EachIter which provides an iterator that can be used in for..range loops on the *Selection object.

goquery now requires Go version 1.23+, use goquery v1.9.x for older Go versions.

v1.9.3

Update go.mod dependencies.

Commits
  • 7d37930 Update readme to prepare 1.10 version
  • 9551ee5 Merge pull request #489 from PuerkitoBio/amikai-itereach-pr
  • 291e2cf Merge branch 'master' into amikai-itereach-pr
  • 7019296 Update CI to target go1.23+
  • eec8e87 Revert "Re-orangize code for compitable"
  • 957a864 Prepare 1.9.3 release
  • 34d91db Merge pull request #488 from PuerkitoBio/dependabot/go_modules/golang.org/x/n...
  • 0984c44 Bump golang.org/x/net from 0.28.0 to 0.29.0
  • fbfb78c Merge pull request #487 from Kiyo510/fix_ci_test
  • e91ee4d Fixed checkout to repo before executing actions/setup-go@v5 step to avoid err...
  • Additional commits viewable in compare view

Updates github.com/charmbracelet/bubbles from 0.19.0 to 0.20.0

Release notes

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

v0.20.0

Focus. Breathe.

This features support for Bubble Tea's new focus-blur feature as well as a quality-of-life update to paginator. Enjoy!

Focus

You heard that right. Focus-blur window events are now enabled for textinput and textarea which were recently added to Bubble Tea v1.1.0. As long as WithReportFocus is enabled in your Program you'll automatically get nicer inputs.

To enable focus reporting:

p := tea.NewProgram(model{}, tea.WithReportFocus())

Remember to stay focused and hydrated!

Paginator opts

Speaking of functional arguments, paginator also received some some new quality-of-life startup options, courtesy @​nervo.

p := paginator.New(
	paginator.WithPerPage(42),
	paginator.WithTotalPages(42),
)

Of course, you can still set the values on the model directly too:

p := paginator.New()
p.PerPage = 42
p.TotalPages = 24

Happy paging!

Changelog

New!

  • d3bd075ed2b27a3b5d76bb79b5d1c928dcd780d0: feat(cursor): focus/blur support (#581) (@​caarlos0)
  • 5110925e8788a8ecfd206df0da8dbeed36cde0f0: feat: Introduce paginator options (@​nervo)

Deps

  • 3eaf8da348203f12a72ce4f994334dc4cd8d91ba: feat(deps): bump github.com/charmbracelet/bubbletea from 0.27.0 to 1.0.0 (#604) (@​dependabot[bot])
  • 6fc27e99d3b0e0cf5db13111e518b47435c42f5a: feat(deps): bump github.com/charmbracelet/bubbletea from 1.0.0 to 1.1.0 (#607) (@​dependabot[bot])

... (truncated)

Commits
  • d3bd075 feat(cursor): focus/blur support (#581)
  • 6fc27e9 feat(deps): bump github.com/charmbracelet/bubbletea from 1.0.0 to 1.1.0 (#607)
  • a163c6c chore(lint): disable predeclared due to false positives
  • 72de4f4 chore(lint): update mnd name, remove deprecated directives
  • 3eaf8da feat(deps): bump github.com/charmbracelet/bubbletea from 0.27.0 to 1.0.0 (#604)
  • 5110925 feat: Introduce paginator options
  • See full diff in compare view

Updates github.com/charmbracelet/bubbletea from 0.27.0 to 1.1.0

Release notes

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

v1.1.0

Let’s Focus

Lose focus much? This release contains support for focus-blur window events.

Usage

All you need to do is to add the program option to your application:

p := tea.NewProgram(model{}, tea.WithReportFocus())
if _, err := p.Run(); err != nil {
	fmt.Fprintln(os.Stderr, "Oof:", err)
	os.Exit(1)
}

Then later in your Update function, you can listen for focus-blur messages:

func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
	switch msg := msg.(type) {
	case tea.FocusMsg:
		// Focused!
	case tea.BlurMsg:
		// Not focused :(
        }
        return m, nil
}

For details, see WithReportFocus.

Tmux

If you're using tmux, make sure you enable the focus-events option in your config.

set-option -g focus-events on

Happy focusing (whatever that means)!


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

... (truncated)

Commits
  • e58efab feat: support focus-blur events (#1122)
  • a5437ac feat(ci): use meta build workflow (#1123)
  • c69bd97 fix: we don't initialize the terminal when using a nilRenderer (#1120)
  • af7ec0e chore(deps): bump github.com/charmbracelet/bubbles in /examples (#1104)
  • 105d88a fix(ci): skip CI for examples/tutorials running go1.18
  • 17443d8 chore(deps): go mod tidy
  • d6458e0 fix: force query the terminal bg before running any programs
  • See full diff in compare view

Updates github.com/sashabaranov/go-openai from 1.29.0 to 1.31.0

Release notes

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

v1.31.0

What's Changed

New Contributors

Full Changelog: sashabaranov/go-openai@v1.30.3...v1.31.0

v1.30.3

What's Changed

New Contributors

Full Changelog: sashabaranov/go-openai@v1.30.2...v1.30.3

v1.30.2

What's Changed

New Contributors

Full Changelog: sashabaranov/go-openai@v1.30.1...v1.30.2

v1.30.1

What's Changed

New Contributors

Full Changelog: sashabaranov/go-openai@v1.30.0...v1.30.1

v1.30.0

What's Changed

New Contributors

Full Changelog: sashabaranov/go-openai@v1.29.2...v1.30.0

... (truncated)

Commits

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

Release notes

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

1.4.0

Version 1.4 adds the sqlitex.ResultBytes function and fixes several bugs.

Added

  • New function sqlitex.ResultBytes. (#86)

Changed

  • Conn.Close returns an error if the connection has already been closed (#101).
  • The minimum modernc.org/sqlite version updated to 1.33.1.

Fixed

  • sqlite3_initialize is now called from any top-level function to prevent race conditions during initialization. (#18).
Changelog

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

1.4.0 - 2024-09-23

Version 1.4 adds the sqlitex.ResultBytes function and fixes several bugs.

Added

  • New function sqlitex.ResultBytes. (#86)

Changed

  • Conn.Close returns an error if the connection has already been closed (#101).
  • The minimum modernc.org/sqlite version updated to 1.33.1.

Fixed

  • sqlite3_initialize is now called from any top-level function to prevent race conditions during initialization. (#18).
Commits

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 5 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/PuerkitoBio/goquery](https://github.com/PuerkitoBio/goquery) | `1.9.2` | `1.10.0` |
| [github.com/charmbracelet/bubbles](https://github.com/charmbracelet/bubbles) | `0.19.0` | `0.20.0` |
| [github.com/charmbracelet/bubbletea](https://github.com/charmbracelet/bubbletea) | `0.27.0` | `1.1.0` |
| [github.com/sashabaranov/go-openai](https://github.com/sashabaranov/go-openai) | `1.29.0` | `1.31.0` |
| [zombiezen.com/go/sqlite](https://github.com/zombiezen/go-sqlite) | `1.3.0` | `1.4.0` |


Updates `github.com/PuerkitoBio/goquery` from 1.9.2 to 1.10.0
- [Release notes](https://github.com/PuerkitoBio/goquery/releases)
- [Commits](PuerkitoBio/goquery@v1.9.2...v1.10.0)

Updates `github.com/charmbracelet/bubbles` from 0.19.0 to 0.20.0
- [Release notes](https://github.com/charmbracelet/bubbles/releases)
- [Changelog](https://github.com/charmbracelet/bubbles/blob/master/.goreleaser.yml)
- [Commits](charmbracelet/bubbles@v0.19.0...v0.20.0)

Updates `github.com/charmbracelet/bubbletea` from 0.27.0 to 1.1.0
- [Release notes](https://github.com/charmbracelet/bubbletea/releases)
- [Changelog](https://github.com/charmbracelet/bubbletea/blob/main/.goreleaser.yml)
- [Commits](charmbracelet/bubbletea@v0.27.0...v1.1.0)

Updates `github.com/sashabaranov/go-openai` from 1.29.0 to 1.31.0
- [Release notes](https://github.com/sashabaranov/go-openai/releases)
- [Commits](sashabaranov/go-openai@v1.29.0...v1.31.0)

Updates `zombiezen.com/go/sqlite` from 1.3.0 to 1.4.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.3.0...v1.4.0)

---
updated-dependencies:
- dependency-name: github.com/PuerkitoBio/goquery
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/charmbracelet/bubbles
  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-major
  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] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Oct 1, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 1, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Nov 1, 2024
@dependabot dependabot bot deleted the dependabot/go_modules/all-7ce63b7016 branch November 1, 2024 10:00
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.

0 participants