ci: Update autoconf to version 2.73#467
ci: Update autoconf to version 2.73#467gsnw-sebast wants to merge 1 commit intoschweikert:developfrom
Conversation
Summary of ChangesHello, 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 by bumping the Autoconf version used in the project's CI pipeline. This ensures that the build process leverages the latest features and bug fixes provided by the new Autoconf release, contributing to a more robust and up-to-date development environment. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Using Gemini Code AssistThe 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
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 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. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request updates autoconf to version 2.73. The changes are straightforward, correctly updating the version in the CI build script and the changelog. I have added one suggestion to the build script to define tool versions in variables, which should improve maintainability for future dependency updates.
| AUTOCONF_REL=autoconf/autoconf-2.73.tar.gz | ||
| AUTOMAKE_REL=automake/automake-1.18.1.tar.gz | ||
| LIBTOOL_REL=libtool/libtool-2.5.4.tar.gz |
There was a problem hiding this comment.
To improve maintainability, consider defining the tool versions in separate variables. This makes it easier to see all versions at a glance and simplifies future updates.
| AUTOCONF_REL=autoconf/autoconf-2.73.tar.gz | |
| AUTOMAKE_REL=automake/automake-1.18.1.tar.gz | |
| LIBTOOL_REL=libtool/libtool-2.5.4.tar.gz | |
| AUTOCONF_VERSION=2.73 | |
| AUTOMAKE_VERSION=1.18.1 | |
| LIBTOOL_VERSION=2.5.4 | |
| AUTOCONF_REL=autoconf/autoconf-${AUTOCONF_VERSION}.tar.gz | |
| AUTOMAKE_REL=automake/automake-${AUTOMAKE_VERSION}.tar.gz | |
| LIBTOOL_REL=libtool/libtool-${LIBTOOL_VERSION}.tar.gz |
A new version of autoconf was released on Fri, Mar 20, 2026, at 3:47:42 PM -0400
https://lists.gnu.org/archive/html/autoconf/2026-03/msg00060.html