This is an automated email from the ASF dual-hosted git repository.

Claudenw pushed a change to branch RAT-541_create-testhelper_data-package
in repository https://gitbox.apache.org/repos/asf/creadur-rat.git


 discard 4b28e990 fixed rebasing issues
 discard ba99b101 fixes for DocumentName errors
 discard d0813e22 Fixed issues with DocumentName and DocumentNameBuilder.
 discard b9556eb0 created TempDir replacement to support Windows
 discard d7955a92 fix spotbugs issues
 discard 0602490a fix spotbugs issues
 discard 82778fa2 fix spotbugs issues
 discard 1cddb4ee fix case statement
 discard 1b2550aa Use MutableInt in ClaimValidator
 discard 02fc4838 Switch to UnmodifiableSets for licences
 discard d3d2f08c Switch to UnmodifiableSets for licences
 discard 15c55511 Change ArgumentContext to build from Options and arguments 
rather than CommandLine
 discard 68ff9de1 Remove ArchiveEntryDocument and clean up ArchiveWalker.
 discard edce05ea updated UI strategy
 discard ad28b621 updated javadoc
 discard d415abca Change to Reporter.Output usage Change to 
ReportConfiguration.IODescriptor usage
 discard a58833ae fixed tests
 discard 2ad16289 created testhelper and updated tests
 discard ccb5dc32 initial changes
     add 02f81d5e Bump actions/checkout from 6 to 7
     add 7036960c Merge pull request #680 from 
apache/dependabot/github_actions/actions/checkout-7
     add ee65671b Bump com.gradle:develocity-maven-extension from 2.4.1 to 2.4.2
     add d17d5100 Merge pull request #682 from 
apache/dependabot/maven/com.gradle-develocity-maven-extension-2.4.2
     add 02a80889 Bump org.apache.ant:ant-antunit from 1.4.1 to 1.5.0
     add 2041069d Merge pull request #681 from 
apache/dependabot/maven/org.apache.ant-ant-antunit-1.5.0
     add 0c08080b RAT-561: Cleanup XmlWriter resource issues (#683)
     add c27dc98a fix DocumentName issues
     add 08096ec7 added windows debug
     add 400d5c1d checkpoint
     add 9aad07d6 Fixed several parsing errors in DocumentName.Builder Add 
testing Expanded testing to include multiple file system types Fix recursion 
issue in DocumentName equals and compareTo Additional migration to assertj 
Changed File options to return DocumentName instances. Cleaned up Sonar review 
issues
     add 637e7018 initial changes
     add 6bb3dfb8 created testhelper and updated tests
     add bf483747 fixed tests
     add d3b9b09c Change to Reporter.Output usage Change to 
ReportConfiguration.IODescriptor usage
     add bfe093db updated javadoc
     add e938d4e3 updated UI strategy
     add 6d866b22 Remove ArchiveEntryDocument and clean up ArchiveWalker.
     add 53246837 Change ArgumentContext to build from Options and arguments 
rather than CommandLine
     add 0e489afe Switch to UnmodifiableSets for licences
     add ab14804e Switch to UnmodifiableSets for licences
     add 192b1752 Use MutableInt in ClaimValidator
     add cc1b4061 fix case statement
     add 070b8fc8 fix spotbugs issues
     add 8ae485b6 fix spotbugs issues
     add 29afe597 fix spotbugs issues
     add 26695bc7 created TempDir replacement to support Windows
     add 47962ed8 Fixed issues with DocumentName and DocumentNameBuilder.
     add cb0e09d8 fixes for DocumentName errors
     add 29c6e4ae fixed rebasing issues
     add 97e0a4c3 RAT-559: Add changelog and fix Sonar issue
     add 5fab40fd RAT-559: Refactor during review
     add ebd61209 RAT-559: Shorten tests
     add d93a5171 RAT-559: Reformat tests
     add 4e369f63 RAT-559: Minor refactorings during review
     add afe42089 cleanup sonarqube issues
     add c0f3d73c Merge branch 'master' into fix-DocumentName-issues
     add 3c08b9ad fixed merge issues
     add 3190339f Merge branch 'fix-DocumentName-issues' into 
RAT-541_create-testhelper_data-package
     add fddbe0b2 fixed merge issues

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   (4b28e990)
            \
             N -- N -- N   refs/heads/RAT-541_create-testhelper_data-package 
(fddbe0b2)

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                        |   2 +-
 .github/workflows/sonarcloud.yml                   |   2 +-
 .mvn/extensions.xml                                |   2 +-
 .../java/org/apache/rat/ReportConfiguration.java   |  19 +-
 .../src/main/java/org/apache/rat/Reporter.java     |   3 +-
 .../rat/config/exclusion/ExclusionProcessor.java   |  20 +-
 .../rat/configuration/XMLConfigurationWriter.java  | 297 +++++-----
 .../org/apache/rat/document/ArchiveEntryName.java  |   4 +-
 .../java/org/apache/rat/document/DocumentName.java |  20 +-
 .../org/apache/rat/report/ConfigurationReport.java |  53 --
 .../rat/report/claim/ClaimReporterMultiplexer.java |  90 ---
 .../apache/rat/report/claim/ClaimStatistic.java    |  18 +-
 .../rat/report/claim/ClaimValidatorReport.java     |  77 ---
 .../rat/report/claim/SimpleXmlClaimReporter.java   |  58 --
 .../org/apache/rat/report/xml/XmlElements.java     | 472 ++++++++--------
 .../apache/rat/report/xml/XmlReportFactory.java    | 130 ++++-
 .../apache/rat/report/xml/writer/IXmlWriter.java   | 159 ------
 .../xml/writer/OperationNotAllowedException.java   |   2 +-
 .../apache/rat/report/xml/writer/XmlWriter.java    |  94 +++-
 .../java/org/apache/rat/OptionCollectionTest.java  |   9 +-
 .../org/apache/rat/ReporterOptionsProvider.java    | 161 ++----
 .../apache/rat/analysis/AnalyserFactoryTest.java   |  20 +-
 .../apache/rat/commandline/FileConverterTest.java  |   6 +-
 .../rat/document/DocumentNameBuilderTest.java      |  17 +-
 .../apache/rat/report/ConfigurationReportTest.java |  27 +-
 .../rat/report/xml/XmlReportFactoryTest.java       |   3 +-
 .../rat/report/xml/writer/XmlWriterUtilsTest.java  |  27 +-
 .../report/xml/writer/impl/base/XmlWriterTest.java | 621 ++++++++++-----------
 .../test/AbstractConfigurationOptionsProvider.java | 236 ++++----
 .../java/org/apache/rat/testhelpers/XmlUtils.java  |   4 +-
 .../org/apache/rat/testhelpers/data/DataUtils.java |  24 +-
 .../testhelpers/data/ReportTestDataProvider.java   |   4 +-
 .../documentation/options/AntOptionCollection.java |   2 +-
 .../java/org/apache/rat/tools/xsd/XsdWriter.java   |   6 +-
 pom.xml                                            |   2 +-
 src/changes/changes.xml                            |   6 +
 36 files changed, 1160 insertions(+), 1537 deletions(-)
 delete mode 100644 
apache-rat-core/src/main/java/org/apache/rat/report/ConfigurationReport.java
 delete mode 100644 
apache-rat-core/src/main/java/org/apache/rat/report/claim/ClaimReporterMultiplexer.java
 delete mode 100644 
apache-rat-core/src/main/java/org/apache/rat/report/claim/ClaimValidatorReport.java
 delete mode 100644 
apache-rat-core/src/main/java/org/apache/rat/report/claim/SimpleXmlClaimReporter.java
 delete mode 100644 
apache-rat-core/src/main/java/org/apache/rat/report/xml/writer/IXmlWriter.java

Reply via email to