Branch: refs/heads/main
  Home:   https://github.com/pmd/pmd
  Commit: 8dfc03b69068669057f191ffa7ad79c3eee1490b
      https://github.com/pmd/pmd/commit/8dfc03b69068669057f191ffa7ad79c3eee1490b
  Author: Sören Glimm <[email protected]>
  Date:   2025-08-19 (Tue, 19 Aug 2025)

  Changed paths:
    M pmd-java/src/main/resources/category/java/codestyle.xml
    M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/rule/codestyle/xml/UseExplicitTypes.xml

  Log Message:
  -----------
  UseExplicitTypes: Add allowCasts property


  Commit: 3424daca14deff96b57e1b0c6af264f031e109ff
      https://github.com/pmd/pmd/commit/3424daca14deff96b57e1b0c6af264f031e109ff
  Author: Sören Glimm <[email protected]>
  Date:   2025-08-19 (Tue, 19 Aug 2025)

  Changed paths:
    M pmd-java/src/main/resources/category/java/codestyle.xml
    M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/rule/codestyle/xml/UseExplicitTypes.xml

  Log Message:
  -----------
  UseExplicitTypes: Add allowLoopVariable property


  Commit: b6ab6eae616bbeb930ec73acb975495961d9cd33
      https://github.com/pmd/pmd/commit/b6ab6eae616bbeb930ec73acb975495961d9cd33
  Author: Andreas Dangel <[email protected]>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M .all-contributorsrc
    M docs/pages/pmd/projectdocs/credits.md

  Log Message:
  -----------
   Add @StevanWhite as a contributor


  Commit: deb5ee4f572ea5751b78afcdfd2778df1f25700e
      https://github.com/pmd/pmd/commit/deb5ee4f572ea5751b78afcdfd2778df1f25700e
  Author: Andreas Dangel <[email protected]>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M docs/pages/release_notes.md

  Log Message:
  -----------
  [doc] Update release notes (#5996)


  Commit: 916f3ddfab97bef7cd599fa69835824d2a0f5499
      https://github.com/pmd/pmd/commit/916f3ddfab97bef7cd599fa69835824d2a0f5499
  Author: Andreas Dangel <[email protected]>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M .all-contributorsrc
    M .github/PULL_REQUEST_TEMPLATE.md
    M .github/workflows/build.yml
    M .github/workflows/publish-release.yml
    M .github/workflows/publish-snapshot.yml
    M README.md
    M docs/Gemfile.lock
    M docs/_data/sidebars/pmd_sidebar.yml
    M docs/index.md
    M docs/pages/pmd/projectdocs/credits.md
    M docs/pages/pmd/userdocs/extending/testing.md
    M docs/pages/pmd/userdocs/pmd_report_formats.md
    M docs/pages/release_notes.md
    M 
pmd-apex/src/test/java/net/sourceforge/pmd/lang/apex/QuickstartRulesetTest.java
    M pmd-core/src/main/java/net/sourceforge/pmd/renderers/CSVRenderer.java
    M pmd-core/src/main/java/net/sourceforge/pmd/reporting/RuleContext.java
    M pmd-core/src/test/java/net/sourceforge/pmd/renderers/CSVRendererTest.java
    M pmd-html/pom.xml
    M 
pmd-html/src/test/resources/net/sourceforge/pmd/lang/html/rule/bestpractices/xml/UseAltAttributeForImages.xml
    M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/ast/ASTLambdaParameter.java
    M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/ast/ASTModifierList.java
    M pmd-java/src/main/java/net/sourceforge/pmd/lang/java/ast/TypesFromAst.java
    M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/ast/internal/JavaAstUtils.java
    M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/ast/internal/LanguageLevelChecker.java
    M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/ast/internal/PrettyPrintingUtil.java
    M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/metrics/internal/NcssVisitor.java
    M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/bestpractices/UnusedFormalParameterRule.java
    A 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/codestyle/ModifierOrderRule.java
    M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/codestyle/UselessParenthesesRule.java
    A 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/documentation/DanglingJavadocRule.java
    A 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/errorprone/CollectionTypeMismatchRule.java
    M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/symbols/JClassSymbol.java
    M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/symbols/internal/asm/ClassStub.java
    M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/symbols/internal/ast/AstSymbolicAnnot.java
    M pmd-java/src/main/javacc/Java.jjt
    M pmd-java/src/main/resources/category/java/bestpractices.xml
    M pmd-java/src/main/resources/category/java/codestyle.xml
    M pmd-java/src/main/resources/category/java/documentation.xml
    M pmd-java/src/main/resources/category/java/errorprone.xml
    M pmd-java/src/main/resources/rulesets/java/quickstart.xml
    M 
pmd-java/src/test/java/net/sourceforge/pmd/lang/java/QuickstartRulesetTest.java
    M 
pmd-java/src/test/java/net/sourceforge/pmd/lang/java/ast/ParserCornersTest.java
    M 
pmd-java/src/test/java/net/sourceforge/pmd/lang/java/ast/internal/PrettyPrintingUtilTest.java
    A 
pmd-java/src/test/java/net/sourceforge/pmd/lang/java/rule/codestyle/ModifierOrderTest.java
    A 
pmd-java/src/test/java/net/sourceforge/pmd/lang/java/rule/documentation/DanglingJavadocTest.java
    A 
pmd-java/src/test/java/net/sourceforge/pmd/lang/java/rule/errorprone/CollectionTypeMismatchTest.java
    M 
pmd-java/src/test/kotlin/net/sourceforge/pmd/lang/java/ast/ASTLambdaExpressionTest.kt
    M 
pmd-java/src/test/kotlin/net/sourceforge/pmd/lang/java/ast/TestExtensions.kt
    M 
pmd-java/src/test/kotlin/net/sourceforge/pmd/lang/java/symbols/internal/JClassSymbolTest.java
    M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/ast/LambdaBug1333.txt
    M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/ast/LambdaBug1470.txt
    M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/ast/ParserCornerCases18.txt
    M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/ast/jdkversiontests/java16/LocalRecords.txt
    M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/ast/jdkversiontests/java22/Jep456_UnnamedPatternsAndVariables.txt
    M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/rule/bestpractices/xml/UnusedFormalParameter.xml
    A 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/rule/codestyle/xml/ModifierOrder.xml
    M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/rule/codestyle/xml/UselessParentheses.xml
    A 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/rule/documentation/xml/DanglingJavadoc.xml
    M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/rule/errorprone/xml/AssignmentInOperand.xml
    A 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/rule/errorprone/xml/CollectionTypeMismatch.xml
    M 
pmd-test-schema/src/main/java/net/sourceforge/pmd/test/schema/BaseTestParserImpl.java
    M 
pmd-test-schema/src/main/java/net/sourceforge/pmd/test/schema/TestSchemaParser.java
    M 
pmd-test-schema/src/main/java/net/sourceforge/pmd/test/schema/TestSchemaVersion.java
    A 
pmd-test-schema/src/main/resources/net/sourceforge/pmd/test/schema/rule-tests_1_1_1.xsd
    M 
pmd-test-schema/src/test/java/net/sourceforge/pmd/test/schema/TestSchemaParserTest.java
    A pmd-test/src/main/java/net/sourceforge/pmd/test/RuleSetAssertions.java
    A pmd-test/src/test/java/net/sourceforge/pmd/test/RuleSetAssertionsTest.java
    A 
pmd-test/src/test/resources/net/sourceforge/pmd/test/ruleset-with-deprecated-rule-ref.xml
    A 
pmd-test/src/test/resources/net/sourceforge/pmd/test/ruleset-with-deprecated-rule.xml
    A 
pmd-test/src/test/resources/net/sourceforge/pmd/test/ruleset-without-warnings.xml
    M pom.xml

  Log Message:
  -----------
  Merge branch 'main' into pr-5996


  Commit: ff64c2bb899add5dda94d33603d08577013f5974
      https://github.com/pmd/pmd/commit/ff64c2bb899add5dda94d33603d08577013f5974
  Author: Andreas Dangel <[email protected]>
  Date:   2025-09-11 (Thu, 11 Sep 2025)

  Changed paths:
    M .all-contributorsrc
    M docs/pages/pmd/projectdocs/credits.md
    M docs/pages/release_notes.md
    M pmd-java/src/main/resources/category/java/codestyle.xml
    M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/rule/codestyle/xml/UseExplicitTypes.xml

  Log Message:
  -----------
  [java] Fix #4916: UseExplicitTypes cases where 'var' should be 
unobjectionable (#5996)


Compare: https://github.com/pmd/pmd/compare/042663b7cd34...ff64c2bb899a

To unsubscribe from these emails, change your notification settings at 
https://github.com/pmd/pmd/settings/notifications


_______________________________________________
Pmd-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/pmd-commits

Reply via email to