Skip to content

chore: update pinned packages for reproducible build#398

Merged
think-in-universe merged 3 commits intomainfrom
fix/repro-build-packages
Jan 28, 2026
Merged

chore: update pinned packages for reproducible build#398
think-in-universe merged 3 commits intomainfrom
fix/repro-build-packages

Conversation

@think-in-universe
Copy link
Contributor

@think-in-universe think-in-universe commented Jan 28, 2026

This PR fixes the reproducible build issue between CI and dev server:

  1. Update pinned packages to the actually installed packages
  2. Rename the build script just to keep it consistent across repositories

Note

Aligns CI and local reproducible builds and updates pinned dependencies to match the built image.

  • Workflow now calls build-image.sh instead of docker-build.sh
  • Adds build-image.sh to build OCI image via docker buildx (BuildKit v0.20.2), optionally push with skopeo, and extract package lists from the built image into pinned-packages-*.txt
  • Refreshes pinned-packages-builder.txt and pinned-packages-runtime.txt with many patch/minor updates (e.g., openssl/libssl, curl, gnupg, glib2, imagemagick, MariaDB libs, kernel headers); versions now reflect the actual installed packages

Written by Cursor Bugbot for commit 2982641. This will update automatically on new commits. Configure here.

Copilot AI review requested due to automatic review settings January 28, 2026 13:13
@gemini-code-assist
Copy link
Contributor

Summary of Changes

Hello @think-in-universe, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request performs a routine maintenance update of pinned Debian packages across both builder and runtime environments. The changes primarily involve minor version bumps and the application of security patches and bug fixes to a wide array of system libraries and utilities. This ensures the project's dependencies remain current, secure, and stable.

Highlights

  • Core System Components Updated: Updates to fundamental packages such as base-files, bash, libc (including libc-bin, libc-dev-bin, libc6-dev, libc6), e2fsprogs, systemd (including libsystemd0, libudev1), and linux-libc-dev have been applied.
  • Security and Networking Libraries Patched: Critical security and networking components received updates, including curl, the gnupg suite (e.g., gnupg, gpg-agent), openssl (both libssl-dev, libssl3, and openssl itself), openssh-client, and Kerberos-related libraries (krb5-multidev, libgssapi-krb5-2, libk5crypto3, libkrb5-dev).
  • Image and Document Processing Libraries Refreshed: Various libraries involved in image and document handling have been updated, including imagemagick (and its core/wand libraries), libaom, libdjvulibre, libexpat, libopenjp2, libtiff, libxml2, and libxslt.
  • Database Connectors Updated: Database-related packages, specifically mariadb (common, dev, and lib), postgresql (libpq-dev, libpq5), and sqlite3, have been updated.
  • Perl Runtime and Timezone Data: The Perl interpreter and its core modules (perl, perl-base, perl-modules-5.36, libperl5.36) have been updated, along with the tzdata package for the latest timezone information.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@claude
Copy link

claude bot commented Jan 28, 2026

PR Review - Security Package Updates

This PR updates pinned Debian 12 packages with recent security patches and dependency updates.

No critical issues found.

Key Updates:

  • Security packages: OpenSSL (3.0.17→3.0.18 runtime), curl (deb12u12→deb12u14), glibc (deb12u10→deb12u13)
  • Kerberos stack: Updated to deb12u4 addressing potential security issues
  • GnuPG components: Updated to deb12u1
  • Core libraries: libxml2, libxslt, sqlite3, libtiff, ImageMagick - all with security patches
  • PostgreSQL client: libpq updated to 15.14

Observations:

✅ No functional code changes - only version bumps in package manifest files
✅ Security-focused updates from Debian stable repository
✅ Backward-compatible patch releases
✅ Build reproducibility maintained through version pinning

These updates are part of normal Debian 12 security maintenance and pose no compatibility or deployment risks.

Status: ✅ Approved

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates pinned Debian packages. However, there are several version inconsistencies for shared dependencies between the builder (pinned-packages-builder.txt) and runtime (pinned-packages-runtime.txt) environments. For example:

  • curl and related libcurl packages are newer in the builder.
  • openssl and related libssl packages are older in the builder.
    This can lead to subtle and hard-to-debug issues. It is crucial to maintain version alignment for shared dependencies across both environments. I've added specific comments highlighting these issues and suggesting corrections.

Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates the repository’s Debian package pin lists used for reproducible builder/runtime container builds.

Changes:

  • Bumps runtime pins for libssl3 and openssl to newer Debian Bookworm security/point-release versions.
  • Refreshes a broad set of builder-stage pinned package versions (core system libs/tools like glibc, curl, gnupg, krb5, perl, etc.).

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.

File Description
pinned-packages-runtime.txt Updates runtime image OpenSSL-related pinned package versions.
pinned-packages-builder.txt Refreshes the pinned package set used for the builder stage, aligning with newer Debian package revisions.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@think-in-universe think-in-universe changed the title chore: update pinned packages chore: update pinned packages for reproducible build Jan 28, 2026
Copy link

@cursor cursor bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes and found 2 potential issues.

Bugbot Autofix is OFF. To automatically fix reported issues with Cloud Agents, enable Autofix in the Cursor dashboard.

@think-in-universe think-in-universe merged commit a57b774 into main Jan 28, 2026
4 checks passed
@think-in-universe think-in-universe deleted the fix/repro-build-packages branch January 28, 2026 14:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants