Skip to content

build: bump the minor-updates group across 1 directory with 2 updates#132

Merged
mrj-ci[bot] merged 1 commit into
mainfrom
dependabot/go_modules/minor-updates-278bfa1cae
May 1, 2026
Merged

build: bump the minor-updates group across 1 directory with 2 updates#132
mrj-ci[bot] merged 1 commit into
mainfrom
dependabot/go_modules/minor-updates-278bfa1cae

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the minor-updates group with 2 updates in the / directory: github.com/alecthomas/chroma/v2 and modernc.org/sqlite.

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

Release notes

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

v2.24.1

Changelog

  • d2a3784 fix: fallback bug

v2.24.0

Changelog

  • 0b841ee chore: go mod tidy
  • 10fcb68 chore(deps): update ubuntu docker tag to v26 (#1251)
  • 2218de6 chore(deps): update all non-major dependencies (#1236)
  • 2099887 Update Solarized Light to use correct background color (#1250)
  • ce43442 Add Lateralus lexer (#1249)
  • 2b00673 fix: commenting issues on gas lexer (#1247)
  • 8d04def Add NameOther entry to github-dark theme (#1240)
  • f2db790 chore(deps): update all non-major dependencies (#1234)
  • fc18a48 Include embedded font license in COPYING file (#1233)
  • e11ef85 chore(deps): update all non-major dependencies (#1211)
  • 79e0fa7 Add ERB lexer (#1228)
  • b59560d Add Spade lexer (#1229)
  • 83b5491 Import Luau lexer (#1209)
  • da72a97 Add JetBrains Darcula theme (#1226)
  • 8087957 styles: case-insensitive style registration and lookup (#1223)
  • 10daf04 Add .json5 to json Lexer (#1224)
  • dccba78 Add AMPL lexer (#1219)
  • ee4ad0a Fix MySQL lexer single comment render error (#1214)
  • b160804 Add using Keyword to JavaScript (#1215)
  • 17e5911 Pop type state when encountering punctuation for graphql (#1210)
  • 893841b Show error message in chromad (#1208)
  • fef8258 Fix error handling in needRules() (#1207)
  • d8a3315 Update the PHP lexer (#1206)
  • 353c35b Add the Kanagawa themes (#1198)
  • 41448fe Update the Materialize lexer (#1201)
  • 020d1c0 Add .qrc as extension for XML (#1205)
  • 6a63b3a Add meson.options as filename for Meson (#1204)
  • d398caf Import Gettext lexer (#1202)
  • 43245c9 chore(deps): update dependency biome to v2.3.12 (#1200)
  • 8215091 feat: add scdoc support (#1199)
  • 3fce7ab chore(deps): update all non-major dependencies (#1188)
Commits

Updates modernc.org/sqlite from 1.48.0 to 1.50.0

Changelog

Sourced from modernc.org/sqlite's changelog.

Changelog

  • 2026-04-24 v1.50.0:

    • Upgrade to sqlite-vec v0.1.9.
    • Introduce ColumnInfo, enabling dynamic query builders and ORMs to retrieve underlying SQLite C-API metadata (OriginName, TableName, DatabaseName, and DeclType).
    • This feature is exposed via the idiomatic database/sql escape hatch (*sql.Conn).Raw(), avoiding custom statement handles and keeping the standard library workflow intact.
    • See [GitLab merge request #113](https://gitlab.com/cznic/sqlite/-/merge_requests/113), thanks Josh Bleecher Snyder!
  • 2026-04-17 v1.49.0: Upgrade to SQLite 3.53.0.

  • 2026-04-06 v1.48.2:

    • Fix ABI mapping mismatch in the pre-update hook trampoline that caused silent truncation of large 64-bit RowIDs.
    • Ensure the Go trampoline signature correctly aligns with the public sqlite3_preupdate_hook C API, preventing data corruption for high-entropy keys (e.g., Snowflake IDs).
    • See [GitLab merge request #98](https://gitlab.com/cznic/sqlite/-/merge_requests/98), thanks Josh Bleecher Snyder!
    • Fix the memory allocator used in (*conn).Deserialize.
    • Replace tls.Alloc with sqlite3_malloc64 to prevent internal allocator corruption. This ensures the buffer is safely owned by SQLite, which may resize or free it due to the SQLITE_DESERIALIZE_RESIZEABLE and SQLITE_DESERIALIZE_FREEONCLOSE flags.
    • Prevent a memory leak by properly freeing the allocated buffer if fetching the main database name fails before handing ownership to SQLite.
    • See [GitLab merge request #100](https://gitlab.com/cznic/sqlite/-/merge_requests/100), thanks Josh Bleecher Snyder!
    • Fix (*conn).Deserialize to explicitly reject nil or empty byte slices.
    • Prevent silent database disconnection and connection pool corruption caused by SQLite's default behavior when sqlite3_deserialize receives a 0-length buffer.
    • See [GitLab merge request #101](https://gitlab.com/cznic/sqlite/-/merge_requests/101), thanks Josh Bleecher Snyder!
    • Fix commitHookTrampoline and rollbackHookTrampoline signatures by removing the unused pCsr parameter.
    • Aligns internal hook callbacks accurately with the underlying SQLite C API, cleaning up the code to prevent potential future confusion or bugs.
    • See [GitLab merge request #102](https://gitlab.com/cznic/sqlite/-/merge_requests/102), thanks Josh Bleecher Snyder!
    • Fix checkptr instrumentation failures during go test -race when registering and using virtual tables (vtab).
    • Allocate sqlite3_module instances using the C allocator (libc.Xcalloc) instead of the Go heap. This ensures transpiled C code can safely perform pointer operations on the struct without tripping Go's pointer checks.
    • See [GitLab merge request #103](https://gitlab.com/cznic/sqlite/-/merge_requests/103), thanks Josh Bleecher Snyder!
    • Fix data race on mutex.id in the mutexTry non-recursive path.
    • Ensure consistent atomic writes (atomic.StoreInt32) to prevent data races with atomic loads in mutexHeld and mutexNotheld during concurrent execution.
    • See [GitLab merge request #104](https://gitlab.com/cznic/sqlite/-/merge_requests/104), thanks Josh Bleecher Snyder!
    • Fix resource leak in (*Backup).Commit where the destination connection was not closed on error.
    • Ensure dstConn is properly closed when sqlite3_backup_finish fails, preventing file descriptor, TLS, and memory leaks.
    • See [GitLab merge request #105](https://gitlab.com/cznic/sqlite/-/merge_requests/105), thanks Josh Bleecher Snyder!
    • Fix Exec to fully drain rows when encountering SQLITE_ROW, preventing silent data loss in DML statements.
    • Previously, Exec aborted after the first row, meaning INSERT, UPDATE, or DELETE statements with a RETURNING clause would fail to process subsequent rows. The execution path now correctly loops until SQLITE_DONE and properly respects context cancellations during the drain loop, fully aligning with native C sqlite3_exec semantics.
    • See [GitLab merge request #106](https://gitlab.com/cznic/sqlite/-/merge_requests/106), thanks Josh Bleecher Snyder!
    • Fix "Shadowed err value (stmt.go)".
    • See [GitLab issue #249](https://gitlab.com/cznic/sqlite/-/work_items/249), thanks Emrecan BATI!
    • Fix silent omission of virtual table savepoint callbacks by correctly setting the sqlite3_module version.
    • See [GitLab merge request #107](https://gitlab.com/cznic/sqlite/-/merge_requests/107), thanks Josh Bleecher Snyder!
    • Fix vfsRead to properly handle partial and fragmented reads from io.Reader.
    • Replace f.Read with io.ReadFull to ensure the buffer is fully populated, preventing premature SQLITE_IOERR_SHORT_READ errors on valid mid-stream partial reads. Unread tail bytes at EOF are now efficiently zero-filled using the built-in clear function.
    • See [GitLab merge request #108](https://gitlab.com/cznic/sqlite/-/merge_requests/108), thanks Josh Bleecher Snyder!
    • Refactor internal error formatting to safely handle uninitialized or closed database pointers.
    • Prevent a misleading "out of memory" error message when an operation fails and the underlying SQLite database handle is NULL (db == 0).
    • See [GitLab merge request #109](https://gitlab.com/cznic/sqlite/-/merge_requests/109), thanks Josh Bleecher Snyder!
    • Fix error handling in database backup and restore initialization (sqlite3_backup_init).
    • Ensure error codes and messages are accurately read from the destination database handle rather than hardcoding the source or remote handle. This prevents swallowed errors or mismatched "not an error" messages when a backup or restore operation fails to start.
    • See [GitLab merge request #111](https://gitlab.com/cznic/sqlite/-/merge_requests/111), thanks Josh Bleecher Snyder!

... (truncated)

Commits
  • e220cc9 CHANGELOG.md: add !113
  • a58d5e5 Merge branch 'columns' into 'master'
  • 119d8b1 add ColumnInfo, for inspecting query columns
  • c353a4f upgrade to sqlite-vec v0.1.9
  • fe575e4 doc.go: update SQLite version
  • 3ccb9ca upgrade to SQLite 3.53.0
  • df16977 CHANGELOG.md: add !112
  • 172c395 Merge branch 'fix-openv2-handle-leak' into 'master'
  • 2719730 fix openV2 handle leak, TLS leak, and misleading error on failed open
  • 53c87f6 CHANGELOG.md: add !111
  • Additional commits viewable in compare view

@dependabot dependabot Bot added the dependencies Dependency upgrades label May 1, 2026
Bumps the minor-updates group with 2 updates in the / directory: [github.com/alecthomas/chroma/v2](https://github.com/alecthomas/chroma) and [modernc.org/sqlite](https://gitlab.com/cznic/sqlite).


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

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

---
updated-dependencies:
- dependency-name: github.com/alecthomas/chroma/v2
  dependency-version: 2.24.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: modernc.org/sqlite
  dependency-version: 1.50.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title build: bump the minor-updates group with 2 updates build: bump the minor-updates group across 1 directory with 2 updates May 1, 2026
@dependabot dependabot Bot force-pushed the dependabot/go_modules/minor-updates-278bfa1cae branch from 9fece4e to 18fb7b3 Compare May 1, 2026 22:27
@mrj-ci mrj-ci Bot merged commit 08c568a into main May 1, 2026
10 checks passed
@mrj-ci mrj-ci Bot deleted the dependabot/go_modules/minor-updates-278bfa1cae branch May 1, 2026 22:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Dependency upgrades

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants