From 5bce0c8aebcbf211022a252e47743afcee00406a Mon Sep 17 00:00:00 2001 From: ECG Bot Date: Tue, 28 Jan 2025 07:07:09 +0000 Subject: [PATCH] build(deps): update neilotoole/sq to v0.48.5 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This MR contains the following updates: | Package | Update | Change | |---|---|---| | [neilotoole/sq](https://github.com/neilotoole/sq) | patch | `v0.48.4` -> `v0.48.5` | MR created with the help of [el-capitano/tools/renovate-bot](https://gitlab.com/el-capitano/tools/renovate-bot). **Proposed changes to behavior should be submitted there as MRs.** --- ### Release Notes
neilotoole/sq (neilotoole/sq) ### [`v0.48.5`](https://github.com/neilotoole/sq/blob/HEAD/CHANGELOG.md#v0485---2025-01-19) [Compare Source](https://github.com/neilotoole/sq/compare/v0.48.4...v0.48.5) ##### Fixed - \[[#​446](https://github.com/neilotoole/sq/issues/446)]: A [`bufio.ErrTooLong`](https://pkg.go.dev/bufio#ErrTooLong) was being returned by [`bufio.Scanner`](https://pkg.go.dev/bufio#Scanner), when splitting lines from input that was too long (larger than [`bufio.MaxScanTokenSize`](https://pkg.go.dev/bufio#MaxScanTokenSize), i.e. `64KB`). This meant that `sq` wasn't able to parse large JSON files, amongst other problems. The maximum buffer size is now configurable via the new [`tuning.scan-buffer-limit`](https://sq.io/docs/config/#tuningscan-buffer-limit) option. Note that the buffer will start small and grow as needed, up to the limit. ```plaintext $ sq config set tuning.scan-buffer-limit 64MB # or 1024B, 64KB, 1GB, etc. ``` A more useful error message is also now returned when the buffer limit is exceeded (the error suggests adjusting `tuning.scan-buffer-limit`). ##### Changed - Renamed config option `tuning.buffer-mem-limit` to [`tuning.buffer-spill-limit`](https://sq.io/docs/config/#tuningbuffer-spill-limit). The new name better reflects the purpose of the option.
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this MR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this MR, check this box --- This MR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). --- chezmoi/dot_config/aquaproj-aqua/aqua.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chezmoi/dot_config/aquaproj-aqua/aqua.yaml b/chezmoi/dot_config/aquaproj-aqua/aqua.yaml index c1dabf8..7d79b8c 100644 --- a/chezmoi/dot_config/aquaproj-aqua/aqua.yaml +++ b/chezmoi/dot_config/aquaproj-aqua/aqua.yaml @@ -331,7 +331,7 @@ packages: - name: lycheeverse/lychee@lychee-v0.18.0 description: Fast, async, stream-based link checker written in Rust. Finds broken URLs and mail addresses inside Markdown, HTML, reStructuredText, websites and more link: https://github.com/lycheeverse/lychee -- name: neilotoole/sq@v0.48.4 +- name: neilotoole/sq@v0.48.5 description: sq data wrangler link: https://github.com/neilotoole/sq - name: printfn/fend@v1.5.5