This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/maven/org.mockito-mockito-core-5.15.2 in repository https://gitbox.apache.org/repos/asf/commons-csv.git
discard e9bb8c7f Bump org.mockito:mockito-core from 4.11.0 to 5.15.2 add 8a827b22 Add Apache license header add e100d623 Don't use deprecated code in examples add 03d23758 Make private instance variable final add 15a38a4e Javadoc: Don't use deprecated code add b63a788e Merge branch 'master' of https://github.com/apache/commons-csv.git add 7f64d84b Fix checkstyle add c2dd9bc0 Bump commons-codec:commons-codec from 1.17.1 to 1.17.2 add cfe873e8 Bump org.apache.commons:commons-parent from 78 to 79 add 86eda8a6 Fix Informix URLs add c08ed6ca Add Microsoft Excel URL add b663258f Whitespace add 055695d3 Remove duplicate entry add 6711054a Add Checstyle FinalParameters add ce844263 Add Checstyle ExplicitInitializationCheck add 5c53b34b Add Checstyle ParenPad add 2e4d5a22 Add Checstyle ArrayTypeStyle add 56151b05 Add Checstyle CovariantEquals add ec8f3207 Add Checstyle DefaultComesLast add d1b1f9c0 Add Checstyle EmptyBlock add 43649ac7 Add Checstyle EqualsHashCode add 9e1f26ca Use standard Checkstyle module name for ExplicitInitialization add 085294dd Add Checstyle FallThrough add 114118c0 Add Checstyle IllegalInstantiation add 6afa33cd Add Checstyle MultipleVariableDeclarations add 81f90443 Add Checstyle SimplifyBooleanExpression add f69526c8 Add Checstyle SimplifyBooleanReturn add a0ff6188 Add Checstyle StringLiteralEquality add 4579bd3b Add Checstyle SuperClone add 947c514b Add Checstyle SuperFinalize add 02b398d3 Add Checstyle UnnecessaryParentheses add 732c2f8b Prepare for the next release candidate add 17d031a9 Use HTTPS to fetch XSD file add 392cf843 Format add 5f5e0f2c Add link to Release History add e2b60772 Bump actions/upload-artifact from 4.5.0 to 4.6.0 add 12738c27 Merge pull request #515 from apache/dependabot/github_actions/actions/upload-artifact-4.6.0 add f2f1cffe Prepare for the next release candidate add eebd7ef0 Bump to next development version add 5f40584b Merge branch 'release' add 35771c10 Add section for the next release add 92e486ac Abbreviate title in release notes add 6bf6ccb6 CSV-317 Release history link changed from changes-report.html to changes.html add 0c82a1d5 Fix dead link to changes-report.html add 237fd24d Merge pull request #516 from froque/CSV-317_fix_changes-reports_link add f7dfe3e7 Merge branch 'master' of https://github.com/apache/commons-csv.git add 88efa325 Javadoc add 1ad1538a Javadoc add ef7652b4 Better email description add de2b7354 Javadoc add 681cca23 Javadoc add 49c5b2c8 Better title add 3dae0147 Use HTTPS to fetch XSD files add bc62fc0f Move people to the bottom add 9759a828 Bump github/codeql-action from 3.28.0 to 3.28.1 add d1d762fb Merge pull request #518 from apache/dependabot/github_actions/github/codeql-action-3.28.1 add fb383cf6 Merge branch 'master' of https://github.com/apache/commons-csv.git add 31e8cd01 Bump com.opencsv:opencsv from 5.9 to 5.10 add 2bf6e53e Add security page and use common menu items add 669023ac Normalise EOL add 3c3057db Use simpler and better JUnit APIs add 2b0b04cc Bump org.mockito:mockito-core from 4.11.0 to 5.15.2 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 (e9bb8c7f) \ N -- N -- N refs/heads/dependabot/maven/org.mockito-mockito-core-5.15.2 (2b0b04cc) 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: .gitattributes | 16 + .github/workflows/codeql-analysis.yml | 166 +- .github/workflows/maven.yml | 98 +- .github/workflows/scorecards-analysis.yml | 4 +- README.md | 4 +- RELEASE-NOTES.txt | 74 +- pom.xml | 138 +- src/assembly/bin.xml | 108 +- src/assembly/src.xml | 86 +- src/changes/changes.xml | 763 ++-- src/changes/release-notes.vm | 6 +- src/conf/checkstyle/checkstyle.xml | 22 +- .../java/org/apache/commons/csv/CSVFormat.java | 266 +- .../java/org/apache/commons/csv/CSVPrinter.java | 1040 +++--- .../java/org/apache/commons/csv/CSVRecord.java | 1 + .../java/org/apache/commons/csv/Constants.java | 180 +- .../apache/commons/csv/ExtendedBufferedReader.java | 14 +- src/main/java/org/apache/commons/csv/Lexer.java | 30 +- .../java/org/apache/commons/csv/package-info.java | 2 +- src/site/resources/pmd/pmd-ruleset.xml | 2 +- src/site/resources/profile.jacoco | 16 + src/site/site.xml | 45 +- src/site/xdoc/download_csv.xml | 26 +- src/site/xdoc/index.xml | 10 +- src/site/xdoc/security.xml | 51 + src/site/xdoc/user-guide.xml | 34 +- .../java/org/apache/commons/csv/CSVFormatTest.java | 3066 ++++++++-------- .../java/org/apache/commons/csv/CSVParserTest.java | 3624 +++++++++--------- .../org/apache/commons/csv/CSVPrinterTest.java | 3852 ++++++++++---------- .../java/org/apache/commons/csv/CSVRecordTest.java | 3 +- .../commons/csv/ExtendedBufferedReaderTest.java | 3 +- .../java/org/apache/commons/csv/LexerTest.java | 298 +- .../org/apache/commons/csv/PerformanceTest.java | 690 ++-- .../java/org/apache/commons/csv/TokenMatchers.java | 91 - .../org/apache/commons/csv/TokenMatchersTest.java | 79 - .../java/org/apache/commons/csv/UserGuideTest.java | 94 + src/test/java/org/apache/commons/csv/Utils.java | 21 +- .../apache/commons/csv/issues/JiraCsv198Test.java | 108 +- .../apache/commons/csv/issues/JiraCsv211Test.java | 108 +- .../apache/commons/csv/issues/JiraCsv288Test.java | 432 +-- 40 files changed, 7906 insertions(+), 7765 deletions(-) create mode 100644 .gitattributes create mode 100644 src/site/xdoc/security.xml delete mode 100644 src/test/java/org/apache/commons/csv/TokenMatchers.java delete mode 100644 src/test/java/org/apache/commons/csv/TokenMatchersTest.java create mode 100644 src/test/java/org/apache/commons/csv/UserGuideTest.java