Skip to content

Update dependency org.antlr:antlr4-runtime to v4.13.2#2391

Open
renovate-bot wants to merge 1 commit intoapache:mainfrom
renovate-bot:renovate/org.antlr-antlr4-runtime-4.x
Open

Update dependency org.antlr:antlr4-runtime to v4.13.2#2391
renovate-bot wants to merge 1 commit intoapache:mainfrom
renovate-bot:renovate/org.antlr-antlr4-runtime-4.x

Conversation

@renovate-bot
Copy link
Copy Markdown
Collaborator

@renovate-bot renovate-bot commented Aug 19, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
org.antlr:antlr4-runtime (source) 4.9.34.13.2 age confidence

Release Notes

antlr/antlr4 (org.antlr:antlr4-runtime)

v4.13.2

Compare Source

Minor updates release.

Pull requests grouped by target

cpp target
go target
javascript target
python3 target

Contributors

v4.13.1

Compare Source

Pull requests grouped by target
csharp target
go target
java target
javascript target
swift target
dart target
Contributors

v4.13.0

Compare Source

This is primarily change to the Go target itself and its release location, which has moved to https://github.com/antlr4-go/antlr. The code still lives and this repository, but for release purposes we've created a new organization and repository so that Go users can pull versions down according to the repository and label rules

Issues fixed
Improvements, features
Pull requests grouped by target
csharp target
cpp target
go target
javascript target
python3 target
Contributors

v4.12.0

Compare Source

The 4.12.0 release is primarily about the new TypeScript target created by @​ericvergnaud. There are also a number of fixes to the various targets, as you can see from the descriptions below.

Issues fixed
Improvements, features
Pull requests grouped by target
csharp target
cpp target
go target
java target
javascript target
python2 target
python3 target
swift target
php target
dart target
Contributors

v4.11.1: (just fixes 4.11.0 release issue)

Compare Source

Just fixes 4.11.0 release issue. I forgot to change runtime tool version so it didn't say SNAPSHOT.

v4.11.0

Compare Source

4.11.0 consist primarily:

  • a major rebuild of the Go target by Jim Idle. Please see Go target doc for more information, as it now requires the go module stuff.
  • huge internal refractoring of testing and various target speed improvements by Ivan Kochurkin
  • Getting all targets to run on all operating systems using github actions by HS.

The details by type and target follow.

Issues fixed
Improvements, features
Pull requests grouped by target
csharp target
cpp target
go target
java target
javascript target
python2 target
python3 target
swift target
php target
dart target
Contributors

v4.10.1

Compare Source

Tiny update to fix build issue where java requirement for runtime was 11 not 1.8.

What's Changed

Full Changelog: antlr/antlr4@v4.10.0...4.10.1

v4.10: Major feature, code clean up, and bug fix release

Compare Source

ANTLR version 4.10

This is a very major release with a number of important changes. There have been many valuable contributions, but I welcome @​KvanTTT and @​jcking as recent "official" major ANTLR contributors. :)

WARNING: Generated 4.10 lexers and parsers are incompatible with code generated by previous versions of ANTLR. You must regenerate all of your code from grammars to use the new runtime. This is true of all targets (except probably javascript).

Repo branching structure

We have changed the branching structure of the repository. The default branch for this repo remains master and it is the latest stable release with tags for the various releases; e.g., see release tag 4.9.3. We now do development work in branch dev between releases and all pull requests should be derived from that branch. The dev branch is merged back into master to cut a release and the release state is tagged (e.g., with 4.10-rc.1 or 4.10.) Visually our process looks roughly like this:

Targets such as Go that pull directly from the repository can use the default master branch but can also pull from the active dev branch:

$ go get github.com/antlr/antlr4/runtime/Go/antlr@dev

Developers certificate of origin

In order to bring ANTLR more in line with current standard standards for contribution processes, as of 4.10, ANTLR uses the Linux Foundation's Developer Certificate of Origin, DCO, version 1.1. See file https://github.com/antlr/antlr4/raw/master/developer-cert-of-origin.txt . It is simpler than the original contributors license agreement, which required programmers to sign the contributors.txt file, which has now moved to file historical-contributors-agreement.txt .

Each commit in pull requests must have a "signature", which is simple as using -s (not -S) on the git commit command:

$ git commit -s -m 'This is my commit message'

Github's pull request process enforces the sig and gives instructions on how to fix any commits that lack the sig. See https://github.com/apps/dco for more info.

4.10-generated parsers incompatible with previous runtimes

ANTLR not only generates recursive-descent parsers; it generates a state machine called an augmented transition network (ATN) in serialized form as a bunch of integers stored in the generated parser and lexer files. This serialization format was changed for 4.10 to remove a size limit on the supported ATNs. See #​3591.

The key point here is that we changed the version number stored inside the serialization format and so, in order to use this new version of ANTLR, you must regenerate all of your lexers and parsers using the 4.10 tool and then use the new runtime. Parsers generated with 4.10 or not compatible with previous versions of the runtime.

Increasing minimum java version

Going forward, we are using Java 11 for the source code and the compiled .class files for the ANTLR tool. The Java runtime target, however, and the associated runtime tests use Java 8 (bumping up from Java 7).

JavaScript target

The JS target has been substantially reworked.

Miscellaneous improvements

  • Lexer rules can use the caseInsensitive option now.
  • Improved error messages
  • We rebuilt the runtime testing rig and made continuous integration improvements; part of this was done to support more recent versions of Java
  • We cleaned up the maven pom and brought it up to date (still has errors if somebody can make a suggestion.)

Changes report

The following report is generated by scripts/github_release_notes.py.

Issues fixed

Improvements, features

Pull requests grouped by target

csharp target
cpp target
go target
java target

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@github-project-automation github-project-automation bot moved this to PRs In Progress in Basic Kanban Board Aug 19, 2025
@renovate-bot renovate-bot changed the title Update dependency org.antlr:antlr4-runtime to v4.13.2 fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Aug 19, 2025
@renovate-bot renovate-bot changed the title fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Update dependency org.antlr:antlr4-runtime to v4.13.2 Aug 31, 2025
@renovate-bot renovate-bot changed the title Update dependency org.antlr:antlr4-runtime to v4.13.2 fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Sep 2, 2025
@renovate-bot renovate-bot changed the title fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Update dependency org.antlr:antlr4-runtime to v4.13.2 Sep 2, 2025
@renovate-bot renovate-bot changed the title Update dependency org.antlr:antlr4-runtime to v4.13.2 fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Sep 3, 2025
@renovate-bot renovate-bot changed the title fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Update dependency org.antlr:antlr4-runtime to v4.13.2 Sep 3, 2025
@renovate-bot renovate-bot force-pushed the renovate/org.antlr-antlr4-runtime-4.x branch from 6b90b6b to c7484f7 Compare September 8, 2025 12:24
@renovate-bot renovate-bot changed the title Update dependency org.antlr:antlr4-runtime to v4.13.2 fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Sep 18, 2025
@renovate-bot renovate-bot force-pushed the renovate/org.antlr-antlr4-runtime-4.x branch 3 times, most recently from c1d1692 to faf487e Compare September 26, 2025 05:37
@renovate-bot renovate-bot force-pushed the renovate/org.antlr-antlr4-runtime-4.x branch from faf487e to fd95d1f Compare September 26, 2025 18:26
@renovate-bot renovate-bot changed the title fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Update dependency org.antlr:antlr4-runtime to v4.13.2 Oct 2, 2025
@renovate-bot renovate-bot changed the title Update dependency org.antlr:antlr4-runtime to v4.13.2 fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Oct 3, 2025
@renovate-bot renovate-bot changed the title fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Update dependency org.antlr:antlr4-runtime to v4.13.2 Oct 3, 2025
@renovate-bot renovate-bot changed the title Update dependency org.antlr:antlr4-runtime to v4.13.2 fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Oct 7, 2025
@renovate-bot renovate-bot changed the title fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Update dependency org.antlr:antlr4-runtime to v4.13.2 Oct 7, 2025
@renovate-bot renovate-bot force-pushed the renovate/org.antlr-antlr4-runtime-4.x branch from fd95d1f to 28fc9ef Compare October 9, 2025 11:18
@renovate-bot renovate-bot force-pushed the renovate/org.antlr-antlr4-runtime-4.x branch from 28fc9ef to 05b27fe Compare October 21, 2025 10:32
@renovate-bot renovate-bot force-pushed the renovate/org.antlr-antlr4-runtime-4.x branch from 05b27fe to d5eb170 Compare October 31, 2025 05:41
@renovate-bot renovate-bot changed the title Update dependency org.antlr:antlr4-runtime to v4.13.2 fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Oct 31, 2025
@renovate-bot renovate-bot changed the title fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Update dependency org.antlr:antlr4-runtime to v4.13.2 Nov 1, 2025
@renovate-bot renovate-bot changed the title Update dependency org.antlr:antlr4-runtime to v4.13.2 fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Nov 2, 2025
@renovate-bot renovate-bot changed the title fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Update dependency org.antlr:antlr4-runtime to v4.13.2 Nov 4, 2025
@renovate-bot renovate-bot force-pushed the renovate/org.antlr-antlr4-runtime-4.x branch 2 times, most recently from bf321fe to 9ef7aa7 Compare November 6, 2025 04:40
@renovate-bot renovate-bot changed the title Update dependency org.antlr:antlr4-runtime to v4.13.2 fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Nov 6, 2025
@renovate-bot renovate-bot changed the title fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Update dependency org.antlr:antlr4-runtime to v4.13.2 Nov 20, 2025
@renovate-bot renovate-bot changed the title Update dependency org.antlr:antlr4-runtime to v4.13.2 fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Dec 1, 2025
@renovate-bot renovate-bot changed the title fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Update dependency org.antlr:antlr4-runtime to v4.13.2 Dec 1, 2025
@renovate-bot renovate-bot changed the title Update dependency org.antlr:antlr4-runtime to v4.13.2 fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Dec 1, 2025
@renovate-bot renovate-bot changed the title fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Update dependency org.antlr:antlr4-runtime to v4.13.2 Dec 2, 2025
@renovate-bot renovate-bot changed the title Update dependency org.antlr:antlr4-runtime to v4.13.2 fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Dec 2, 2025
@renovate-bot renovate-bot force-pushed the renovate/org.antlr-antlr4-runtime-4.x branch 2 times, most recently from faa063f to c2b7ec9 Compare December 25, 2025 15:45
@renovate-bot renovate-bot force-pushed the renovate/org.antlr-antlr4-runtime-4.x branch 2 times, most recently from e77e331 to d037b67 Compare December 31, 2025 17:06
@renovate-bot renovate-bot force-pushed the renovate/org.antlr-antlr4-runtime-4.x branch from d037b67 to 009c73d Compare January 25, 2026 16:00
@renovate-bot renovate-bot changed the title fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Update dependency org.antlr:antlr4-runtime to v4.13.2 Jan 25, 2026
@renovate-bot renovate-bot changed the title Update dependency org.antlr:antlr4-runtime to v4.13.2 fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Jan 25, 2026
@renovate-bot renovate-bot force-pushed the renovate/org.antlr-antlr4-runtime-4.x branch from 009c73d to 4727ff1 Compare February 2, 2026 16:58
@renovate-bot renovate-bot changed the title fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Update dependency org.antlr:antlr4-runtime to v4.13.2 Feb 3, 2026
@renovate-bot renovate-bot changed the title Update dependency org.antlr:antlr4-runtime to v4.13.2 fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Feb 8, 2026
@renovate-bot renovate-bot force-pushed the renovate/org.antlr-antlr4-runtime-4.x branch 2 times, most recently from cdc956c to b74f053 Compare February 15, 2026 14:18
@renovate-bot renovate-bot changed the title fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Update dependency org.antlr:antlr4-runtime to v4.13.2 Feb 19, 2026
@renovate-bot renovate-bot changed the title Update dependency org.antlr:antlr4-runtime to v4.13.2 fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Feb 24, 2026
@renovate-bot renovate-bot force-pushed the renovate/org.antlr-antlr4-runtime-4.x branch 2 times, most recently from 3348a2e to 71c6eb8 Compare March 5, 2026 10:12
@renovate-bot renovate-bot force-pushed the renovate/org.antlr-antlr4-runtime-4.x branch from 71c6eb8 to 79025e5 Compare March 13, 2026 18:07
@renovate-bot renovate-bot force-pushed the renovate/org.antlr-antlr4-runtime-4.x branch from 79025e5 to a7b2cbb Compare April 1, 2026 17:33
Copy link
Copy Markdown
Contributor

@flyrain flyrain left a comment

Choose a reason for hiding this comment

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

I assume this version upgrade should align with Spark version upgrade. I'd suggest to never upgrade this separately. cc @gh-yzou

@gh-yzou
Copy link
Copy Markdown
Contributor

gh-yzou commented Apr 2, 2026

@flyrain seems the current integration tests failed, so yes, this upgrade can not not be done

@renovate-bot renovate-bot changed the title fix(deps): update dependency org.antlr:antlr4-runtime to v4.13.2 Update dependency org.antlr:antlr4-runtime to v4.13.2 Apr 2, 2026
@renovate-bot renovate-bot force-pushed the renovate/org.antlr-antlr4-runtime-4.x branch from a7b2cbb to 9abf5fc Compare April 8, 2026 14:44
@renovate-bot renovate-bot force-pushed the renovate/org.antlr-antlr4-runtime-4.x branch from 9abf5fc to fc8e984 Compare April 20, 2026 05:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants