leetgo
leetgo copied to clipboard
chore(deps): bump the all group with 5 updates
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
EachIterwhich provides an iterator that can be used infor..rangeloops on the*Selectionobject.goquery now requires Go version 1.23+, use goquery
v1.9.xfor older Go versions.v1.9.3
Update go.mod dependencies.
Commits
7d37930Update readme to prepare 1.10 version9551ee5Merge pull request #489 from PuerkitoBio/amikai-itereach-pr291e2cfMerge branch 'master' into amikai-itereach-pr7019296Update CI to target go1.23+eec8e87Revert "Re-orangize code for compitable"957a864Prepare 1.9.3 release34d91dbMerge pull request #488 from PuerkitoBio/dependabot/go_modules/golang.org/x/n...0984c44Bump golang.org/x/net from 0.28.0 to 0.29.0fbfb78cMerge pull request #487 from Kiyo510/fix_ci_teste91ee4dFixed 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
textinputandtextareawhich were recently added to Bubble Tea v1.1.0. As long asWithReportFocusis 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,
paginatoralso 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 = 24Happy 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
d3bd075feat(cursor): focus/blur support (#581)6fc27e9feat(deps): bump github.com/charmbracelet/bubbletea from 1.0.0 to 1.1.0 (#607)a163c6cchore(lint): disable predeclared due to false positives72de4f4chore(lint): update mnd name, remove deprecated directives3eaf8dafeat(deps): bump github.com/charmbracelet/bubbletea from 0.27.0 to 1.0.0 (#604)5110925feat: 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
Updatefunction, 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 thefocus-eventsoption in your config.set-option -g focus-events onHappy 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
e58efabfeat: support focus-blur events (#1122)a5437acfeat(ci): use meta build workflow (#1123)c69bd97fix: we don't initialize the terminal when using a nilRenderer (#1120)af7ec0echore(deps): bump github.com/charmbracelet/bubbles in /examples (#1104)105d88afix(ci): skip CI for examples/tutorials running go1.1817443d8chore(deps): go mod tidyd6458e0fix: 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
- Filter messages by the run ID that generated them. (run_id string Optional) by
@floodwmin sashabaranov/go-openai#855- Optimize Client Error Return by
@eiixyin sashabaranov/go-openai#856- Fix max_completion_tokens by
@alexsacrin sashabaranov/go-openai#860- fix: ParallelToolCalls should be added to RunRequest by
@kenshin54in sashabaranov/go-openai#861- feat: usage struct add CompletionTokensDetails by
@liushuanglsin sashabaranov/go-openai#863New Contributors
@floodwmmade their first contribution in sashabaranov/go-openai#855@alexsacrmade their first contribution in sashabaranov/go-openai#860Full Changelog: https://github.com/sashabaranov/go-openai/compare/v1.30.3...v1.31.0
v1.30.3
What's Changed
- feat: add ParallelToolCalls to RunRequest by
@kenshin54in sashabaranov/go-openai#847New Contributors
@kenshin54made their first contribution in sashabaranov/go-openai#847Full Changelog: https://github.com/sashabaranov/go-openai/compare/v1.30.2...v1.30.3
v1.30.2
What's Changed
- add max_completions_tokens for o1 series models by
@chococolain sashabaranov/go-openai#857New Contributors
@chococolamade their first contribution in sashabaranov/go-openai#857Full Changelog: https://github.com/sashabaranov/go-openai/compare/v1.30.1...v1.30.2
v1.30.1
What's Changed
- fix: jsonschema integer validation by
@WeiAnAnin sashabaranov/go-openai#852New Contributors
@WeiAnAnmade their first contribution in sashabaranov/go-openai#852Full Changelog: https://github.com/sashabaranov/go-openai/compare/v1.30.0...v1.30.1
v1.30.0
What's Changed
- Support OpenAI reasoning models by
@abatiloin sashabaranov/go-openai#850New Contributors
@abatilomade their first contribution in sashabaranov/go-openai#850Full Changelog: https://github.com/sashabaranov/go-openai/compare/v1.29.2...v1.30.0
... (truncated)
Commits
fdd59d9feat: usage struct add CompletionTokensDetails (#863)e9d8485fix: ParallelToolCalls should be added to RunRequest (#861)7f80303Fix max_completion_tokens (#860)38bdc81Optimize Client Error Return (#856)e095df5run_id string Optional (#855)9a4f3a7feat: add ParallelToolCalls to RunRequest (#847)9add1c3add max_completions_tokens for o1 series models (#857)1ec8c24fix: jsonschema integer validation (#852)a5fb553Support OpenAI reasoning models (#850)194a03eAdd refusal (#844)- Additional commits viewable in compare view
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.ResultBytesfunction and fixes several bugs.Added
- New function
sqlitex.ResultBytes. (#86)Changed
Conn.Closereturns an error if the connection has already been closed (#101).- The minimum
modernc.org/sqliteversion updated to 1.33.1.Fixed
sqlite3_initializeis 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.ResultBytesfunction and fixes several bugs.Added
- New function
sqlitex.ResultBytes. (#86)Changed
Conn.Closereturns an error if the connection has already been closed (#101).- The minimum
modernc.org/sqliteversion updated to 1.33.1.Fixed
sqlite3_initializeis 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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