Skip to content

chore(deps): Align sqlite3 override version with ecosystem standard #950

Description

@kcenon

What

The vcpkg.json overrides sqlite3 to version 3.45.1, while database_system overrides it to 3.45.3. These should be aligned to avoid potential ABI or behavior differences when both systems are used together.

  • Current: pacs_system/vcpkg.json overrides sqlite3 to 3.45.1
  • Expected: Override aligned to 3.45.3 (matching database_system and newer patch)
  • Scope: vcpkg.json overrides section

Why

  • Ecosystem packages may coexist in the same consumer project
  • Different sqlite3 versions could lead to subtle behavior differences or version conflicts
  • 3.45.3 is the newer patch release with bug fixes over 3.45.1

Where

  • vcpkg.json line 16: { "name": "sqlite3", "version": "3.45.1" }
  • Reference: database_system/vcpkg.json line 22: { "name": "sqlite3", "version": "3.45.3" }

How

Technical Approach

Update vcpkg.json overrides:

{ "name": "sqlite3", "version": "3.45.3" }

Acceptance Criteria

  • sqlite3 override version matches database_system (3.45.3)
  • Build succeeds with updated version

Metadata

Metadata

Assignees

No one assigned

    Labels

    dependenciesPull requests that update a dependency file

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions