kafka-ui
kafka-ui copied to clipboard
Bump antlr4-maven-plugin.version from 4.7.1 to 4.10.1
Bumps antlr4-maven-plugin.version from 4.7.1 to 4.10.1.
Updates antlr4-runtime from 4.7.1 to 4.10.1
Release notes
Sourced from antlr4-runtime's releases.
4.10.1
Tiny update to fix build issue where java requirement for runtime was 11 not 1.8.
What's Changed
- [C++] Remove reference to antlrcpp:s2ws (#3656) by
@jckingin antlr/antlr4#3657- Update publishing instruction for Dart by
@lingyv-liin antlr/antlr4#3655- Prep 4.10.1 by
@parrtin antlr/antlr4#3660Full Changelog: https://github.com/antlr/antlr4/compare/v4.10.0...4.10.1
4.10 Major feature, code clean up, and bug fix release
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
@KvanTTTand@jckingas 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
masterand 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 branchdevbetween releases and all pull requests should be derived from that branch. Thedevbranch is merged back intomasterto cut a release and the release state is tagged (e.g., with4.10-rc.1or4.10.) Visually our process looks roughly like this:Targets such as Go that pull directly from the repository can use the default
masterbranch but can also pull from the activedevbranch:$ go get github.com/antlr/antlr4/runtime/Go/antlr@devDevelopers 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.txtfile, 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 antlr/antlr4#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
... (truncated)
Commits
44d87bc[maven-release-plugin] prepare release 4.10.103c47f7Prep 4.10.1 (#3660)f6b2022update instruction for dart (#3655)3724b19[C++] Remove reference to antlrcpp:s2ws (#3656) (#3657)ae1bf40use to 4.3.3 ST4 not snapshot3adf4fduse to 4.3.3 ST4, tweak status badge3e3fecffix badges661d8ecdeploy script copied wrong jar filee37fea1tweak doc, scripts for release2471728[maven-release-plugin] prepare for next development iteration- Additional commits viewable in compare view
Updates antlr4-maven-plugin from 4.7.1 to 4.10.1
Release notes
Sourced from antlr4-maven-plugin's releases.
4.10.1
Tiny update to fix build issue where java requirement for runtime was 11 not 1.8.
What's Changed
- [C++] Remove reference to antlrcpp:s2ws (#3656) by
@jckingin antlr/antlr4#3657- Update publishing instruction for Dart by
@lingyv-liin antlr/antlr4#3655- Prep 4.10.1 by
@parrtin antlr/antlr4#3660Full Changelog: https://github.com/antlr/antlr4/compare/v4.10.0...4.10.1
4.10 Major feature, code clean up, and bug fix release
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
@KvanTTTand@jckingas 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
masterand 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 branchdevbetween releases and all pull requests should be derived from that branch. Thedevbranch is merged back intomasterto cut a release and the release state is tagged (e.g., with4.10-rc.1or4.10.) Visually our process looks roughly like this:Targets such as Go that pull directly from the repository can use the default
masterbranch but can also pull from the activedevbranch:$ go get github.com/antlr/antlr4/runtime/Go/antlr@devDevelopers 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.txtfile, 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 antlr/antlr4#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
... (truncated)
Commits
44d87bc[maven-release-plugin] prepare release 4.10.103c47f7Prep 4.10.1 (#3660)f6b2022update instruction for dart (#3655)3724b19[C++] Remove reference to antlrcpp:s2ws (#3656) (#3657)ae1bf40use to 4.3.3 ST4 not snapshot3adf4fduse to 4.3.3 ST4, tweak status badge3e3fecffix badges661d8ecdeploy script copied wrong jar filee37fea1tweak doc, scripts for release2471728[maven-release-plugin] prepare for next development iteration- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)