Skip to content

build: bump the minor-updates group across 1 directory with 3 updates#128

Merged
mrj-ci[bot] merged 1 commit intomainfrom
dependabot/go_modules/minor-updates-ece9c896be
Apr 1, 2026
Merged

build: bump the minor-updates group across 1 directory with 3 updates#128
mrj-ci[bot] merged 1 commit intomainfrom
dependabot/go_modules/minor-updates-ece9c896be

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 1, 2026

Bumps the minor-updates group with 3 updates in the / directory: charm.land/bubbles/v2, github.com/alecthomas/chroma/v2 and modernc.org/sqlite.

Updates charm.land/bubbles/v2 from 2.0.0 to 2.1.0

Release notes

Sourced from charm.land/bubbles/v2's releases.

v2.1.0

Shrink ’n’ grow your textareas

The update adds a new feature to automatically resize your textarea vertically as its content changes.

ta := textarea.New()
ta.DynamicHeight = true   // Enable dynamic resizing
ta.MinHeight = 3          // Minimum visible rows
ta.MaxHeight = 10         // Maximum visible rows
ta.MaxContentHeight = 20  // Maximum rows of content

Piece of cake, right?

Enjoy! 💘

Changelog

New!

  • f1daacfa0cfee07e31a12498078426d275aa5286: feat(textarea): dynamic height (#910) (@​meowgorithm)

Thoughts? Questions? We love hearing from you. Feel free to reach out on X, Discord, Slack, The Fediverse, Bluesky.

Commits

Updates github.com/alecthomas/chroma/v2 from 2.17.2 to 2.23.1

Release notes

Sourced from github.com/alecthomas/chroma/v2's releases.

v2.23.1

Changelog

  • 5b4188b fix: remove AGPL licensed testdata
  • b9b4edc Add .env.* pattern to bash lexer (#1197)
  • f163adc docs: add AGENTS.md
  • fe6f0f3 fix: title link to Chroma

v2.23.0

Changelog

  • 610afd8 feat: add light/dark mode toggle
  • 1b5aad9 fix: make just commands faster
  • 84583c6 fix: wait for WASM runtime to become ready at startup
  • 1b6f6e7 fix: need relative import for wasm_exec.js
  • 2a78195 fix: wasm builds got broken by the last change
  • f8a34ec feat: fix local dev so it falls back to server
  • 6827057 refactor: migrate to Just
  • a60896f Create a lexer for Markless (#1195)

v2.22.0

Changelog

  • 467c878 fix: reverse order of --lexer to name, then file
  • 649c24d Add KDL lexer (#1192)
  • 249a634 Add MoonBit lexer (#1191)
  • 3e1f428 Update Zig lexer and example (#1189)
  • 31592d5 fix: no text auto-sizing on webkit (#1186)
  • 2e611c1 Add APKBUILD as filename to Bash lexer (#1187)
  • c1adec8 chore(deps): update all non-major dependencies (#1185)
  • 24cc733 fix(styles): update punctuation in Aura Theme to meet style guidelines (#1184)
  • b0358e8 Add lexer for microcad (#1171)

v2.21.1

Changelog

  • 0fe6941 fix(styles): use kebab-case for style name in Aura Theme variants (#1183)
  • 2408917 chore(deps): update all non-major dependencies (#1178)
  • b527a28 Update lexer lox (#1175)

v2.21.0

Changelog

  • 26a0cc1 feat(styles): add Aura Theme primary variants (#1177)
  • fc10487 Fix (D): multiline comments (#1173)
  • aec4bfc Add support for Device tree (#1172)
  • 8ea696b chore(deps): update actions/checkout action to v6 (#1167)
  • a40a9d3 chore(deps): update dependency binaryen to v125 (#1168)
  • 5486d21 chore(deps): update all non-major dependencies (#1164)
  • 42c2aa1 Add helper script to generate supported langs markdown table (#1170)
  • e799618 chore(deps): update actions/checkout digest to 93cb6ef (#1163)
  • 6b58845 Add Ashen style (#1169)
  • 8b8574c Add Protocol Buffer Text Format Language (txtpb) (#1165)
  • c07ef4b chore(deps): update all non-major dependencies (#1160)
  • 3b5a164 Add lexer for WebAssembly Text Format (#1161)

... (truncated)

Commits
  • 5b4188b fix: remove AGPL licensed testdata
  • b9b4edc Add .env.* pattern to bash lexer (#1197)
  • f163adc docs: add AGENTS.md
  • fe6f0f3 fix: title link to Chroma
  • 610afd8 feat: add light/dark mode toggle
  • 1b5aad9 fix: make just commands faster
  • 84583c6 fix: wait for WASM runtime to become ready at startup
  • 1b6f6e7 fix: need relative import for wasm_exec.js
  • 2a78195 fix: wasm builds got broken by the last change
  • f8a34ec feat: fix local dev so it falls back to server
  • Additional commits viewable in compare view

Updates modernc.org/sqlite from 1.46.1 to 1.48.0

Changelog

Sourced from modernc.org/sqlite's changelog.

Changelog

  • 2026-03-27 v1.48.0:

    • Add _timezone DSN query parameter to apply IANA timezones (e.g., "America/New_York") to both reads and writes.
    • Writes will convert time.Time values to the target timezone before formatting as a string.
    • Reads will interpret timezone-less strings as being in the target timezone.
    • Does not impact _inttotime integer values, which will always safely evaluate as UTC.
    • Add support for _time_format=datetime URI parameter to format time.Time values identically to SQLite's native datetime() function and CURRENT_TIMESTAMP (YYYY-MM-DD HH:MM:SS).
    • See [GitLab merge request #94](https://gitlab.com/cznic/sqlite/-/merge_requests/94) and [GitLab merge request #95](https://gitlab.com/cznic/sqlite/-/merge_requests/95), thanks Josh Bleecher Snyder!
  • 2026-03-17 v1.47.0: Add CGO-free version of the vector extensions from https://github.com/asg017/sqlite-vec. See vec_test.go for example usage. From the GitHub project page:

    • Important: sqlite-vec is a pre-v1, so expect breaking changes!
    • Store and query float, int8, and binary vectors in vec0 virtual tables
    • Written in pure C, no dependencies, runs anywhere SQLite runs (Linux/MacOS/Windows, in the browser with WASM, Raspberry Pis, etc.)
    • Store non-vector data in metadata, auxiliary, or partition key columns
    • See [GitLab merge request #93](https://gitlab.com/cznic/sqlite/-/merge_requests/93), thanks Zhenghao Zhang!
  • 2026-03-16 v1.46.2: Upgrade to SQLite 3.51.3.

  • 2026-02-17 v1.46.1:

    • Ensure connection state is reset if Tx.Commit fails. Previously, errors like SQLITE_BUSY during COMMIT could leave the underlying connection inside a transaction, causing errors when the connection was reused by the database/sql pool. The driver now detects this state and forces a rollback internally.
    • Fixes [GitHub issue #2](modernc-org/sqlite#2), thanks Edoardo Spadolini!
  • 2026-02-17 v1.46.0:

    • Enable ColumnTypeScanType to report time.Time instead of string for TEXT columns declared as DATE, DATETIME, TIME, or TIMESTAMP via a new _texttotime URI parameter.
    • See [GitHub pull request #1](modernc-org/sqlite#1), thanks devhaozi!
  • 2026-02-09 v1.45.0:

    • Introduce vtab subpackage (modernc.org/sqlite/vtab) exposing Module, Table, Cursor, and IndexInfo API for Go virtual tables.
    • Wire vtab registration into the driver: vtab.RegisterModule installs modules globally and each new connection calls sqlite3_create_module_v2.
    • Implement vtab trampolines for xCreate/xConnect/xBestIndex/xDisconnect/xDestroy/xOpen/xClose/xFilter/xNext/xEof/xColumn/xRowid.
    • Map SQLite’s sqlite3_index_info into vtab.IndexInfo, including constraints, ORDER BY terms, and constraint usage (ArgIndex → xFilter argv[]).
    • Add an in‑repo dummy vtab module and test (module_test.go) that validates registration, basic scanning, and constraint visibility.
    • See [GitLab merge request #90](https://gitlab.com/cznic/sqlite/-/merge_requests/90), thanks Adrian Witas!
  • 2026-01-19 v1.44.3: Resolves [GitLab issue #243](https://gitlab.com/cznic/sqlite/-/issues/243).

  • 2026-01-18 v1.44.2: Upgrade to SQLite 3.51.2.

  • 2026-01-13 v1.44.0: Upgrade to SQLite 3.51.1.

  • 2025-10-10 v1.39.1: Upgrade to SQLite 3.50.4.

  • 2025-06-09 v1.38.0: Upgrade to SQLite 3.50.1.

  • 2025-02-26 v1.36.0: Upgrade to SQLite 3.49.0.

  • 2024-11-16 v1.34.0: Implement ResetSession and IsValid methods in connection

  • 2024-07-22 v1.31.0: Support windows/386.

... (truncated)

Commits
  • 19b8429 update {CHANGELOG,README}.md
  • 78ddab8 Merge branch 'datetime-format' into 'master'
  • 2e04523 Merge branch 'add-timezone' into 'master'
  • 77706c1 add _time_format=datetime support
  • 1895822 add _timezone DSN query parameter
  • c2c6272 CHANGELOG.md: fix formatting
  • 2942e46 restore logo.png
  • b4deaee include Zhenghao Zhang in CHANGELOG, AUTHORS, CONTRIBUTORS, updates !93
  • ba4fc0b add sqlite_vec extension, updates !93
  • 8b9ffba Merge branch 'windows' into 'master'
  • Additional commits viewable in compare view

@dependabot dependabot Bot added the dependencies Dependencies label Apr 1, 2026
@dependabot dependabot Bot changed the title build: bump the minor-updates group with 3 updates build: bump the minor-updates group across 1 directory with 3 updates Apr 1, 2026
Bumps the minor-updates group with 3 updates: [charm.land/bubbles/v2](https://github.com/charmbracelet/bubbles), [github.com/alecthomas/chroma/v2](https://github.com/alecthomas/chroma) and [modernc.org/sqlite](https://gitlab.com/cznic/sqlite).


Updates `charm.land/bubbles/v2` from 2.0.0 to 2.1.0
- [Release notes](https://github.com/charmbracelet/bubbles/releases)
- [Commits](charmbracelet/bubbles@v2.0.0...v2.1.0)

Updates `github.com/alecthomas/chroma/v2` from 2.17.2 to 2.23.1
- [Release notes](https://github.com/alecthomas/chroma/releases)
- [Commits](alecthomas/chroma@v2.17.2...v2.23.1)

Updates `modernc.org/sqlite` from 1.46.1 to 1.48.0
- [Changelog](https://gitlab.com/cznic/sqlite/blob/master/CHANGELOG.md)
- [Commits](https://gitlab.com/cznic/sqlite/compare/v1.46.1...v1.48.0)

---
updated-dependencies:
- dependency-name: charm.land/bubbles/v2
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: github.com/alecthomas/chroma/v2
  dependency-version: 2.23.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: modernc.org/sqlite
  dependency-version: 1.48.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot Bot force-pushed the dependabot/go_modules/minor-updates-ece9c896be branch from 8fb90b5 to 5f76ad7 Compare April 1, 2026 23:21
@mrj-ci mrj-ci Bot merged commit 82a81f8 into main Apr 1, 2026
10 checks passed
@mrj-ci mrj-ci Bot deleted the dependabot/go_modules/minor-updates-ece9c896be branch April 1, 2026 23:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Dependencies

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants