This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/github_actions/actions/checkout-v2.3.1
in repository https://gitbox.apache.org/repos/asf/commons-validator.git.
discard 4f5b0d4 Bump actions/checkout from v1 to v2.3.1
add d25a99d Latest updates
add 4887343 Move startup tests to separate class
add 77d7036 Convert to Junit4
add dcf935a Proper startup tests
add 7bfb88f Simplify; avoid hiding instances variables
add 2ca2057 VALIDATOR-471 Allow DomainValidator overrides
add fa64f6f Restore privacy accidentally dropped
add ac13d90 Report all errors
add 047d190 +=@since markers
add ab5ee19 Add test for validator-429
add ba33652 Show URI parsing details
add 15ee749 Possible validation error
add 1f2e113 VALIDATOR-452 IPv4-mapped IPv6 address
add c314b5f Fix GitHub action for Java 15-ea.
add 76bfbd8 GitHub actions/setup-java@v1 -> actions/[email protected].
add b7a2493 Bump actions/checkout from v1 to v2.3.1
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (4f5b0d4)
\
N -- N -- N
refs/heads/dependabot/github_actions/actions/checkout-v2.3.1 (b7a2493)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/workflows/maven.yml | 4 +-
pom.xml | 8 +
src/changes/changes.xml | 9 +-
.../org/apache/commons/validator/Validator.java | 4 +-
.../apache/commons/validator/ValidatorAction.java | 16 +-
.../validator/routines/DomainValidator.java | 179 ++++++++++++++----
.../commons/validator/routines/ISSNValidator.java | 2 +
.../commons/validator/routines/UrlValidator.java | 22 ++-
.../routines/DomainValidatorStartupTest.java | 202 +++++++++++++++++++++
.../validator/routines/DomainValidatorTest.java | 79 --------
.../validator/routines/IBANValidatorTest.java | 13 +-
.../validator/routines/UrlValidatorTest.java | 8 +-
12 files changed, 417 insertions(+), 129 deletions(-)
create mode 100644
src/test/java/org/apache/commons/validator/routines/DomainValidatorStartupTest.java