[pmd-commits] [pmd/pmd] af9713: [java] Stop parsing Java for CPD

2024-05-02 Thread Andreas Dangel via Pmd-commits
  Branch: refs/heads/master
  Home:   https://github.com/pmd/pmd
  Commit: af97136018cf292bae091311846aa84353e66599
  https://github.com/pmd/pmd/commit/af97136018cf292bae091311846aa84353e66599
  Author: Clément Fournier 
  Date:   2024-04-23 (Tue, 23 Apr 2024)

  Changed paths:
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/ast/SyntacticJavaTokenizerFactory.java
M pmd-java/src/main/java/net/sourceforge/pmd/lang/java/cpd/JavaCpdLexer.java

  Log Message:
  ---
  [java] Stop parsing Java for CPD

Ref #4958


  Commit: beac8ab3acbe060663311ed3a7776dce2c3c713a
  https://github.com/pmd/pmd/commit/beac8ab3acbe060663311ed3a7776dce2c3c713a
  Author: Clément Fournier 
  Date:   2024-04-25 (Thu, 25 Apr 2024)

  Changed paths:
M docs/pages/release_notes.md
M pmd-core/src/main/java/net/sourceforge/pmd/cpd/MatchCollector.java
M pmd-core/src/main/java/net/sourceforge/pmd/util/CollectionUtil.java
M pmd-core/src/test/java/net/sourceforge/pmd/cpd/MatchAlgorithmTest.java
A pmd-cpp/src/test/java/net/sourceforge/pmd/lang/cpp/cpd/CppCpdTest.java
A 
pmd-cpp/src/test/resources/net/sourceforge/pmd/lang/cpp/cpd/testdata/ctype.c
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/internal/DataflowPass.java
M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/rule/bestpractices/xml/UnusedAssignment.xml
M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/rule/errorprone/xml/ImplicitSwitchFallThrough.xml
M pom.xml

  Log Message:
  ---
  Merge branch 'master' into cpd-java-no-parse


  Commit: 9a25d90c76ae64a0d4c6fd35ca4c90af37fed878
  https://github.com/pmd/pmd/commit/9a25d90c76ae64a0d4c6fd35ca4c90af37fed878
  Author: Clément Fournier 
  Date:   2024-04-28 (Sun, 28 Apr 2024)

  Changed paths:
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/ast/SyntacticJavaTokenizerFactory.java

  Log Message:
  ---
  Put back old implementation in place


  Commit: b70521874a0e8003989b5c449505fd8d617155c4
  https://github.com/pmd/pmd/commit/b70521874a0e8003989b5c449505fd8d617155c4
  Author: Clément Fournier 
  Date:   2024-04-28 (Sun, 28 Apr 2024)

  Changed paths:
M javacc-wrapper.xml
M pmd-java/etc/grammar/Java.jjt
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/ast/SyntacticJavaTokenizerFactory.java

  Log Message:
  ---
  Fix failing tests


  Commit: c476f4c06cdc10f1f76321aba7e4dd75973f518c
  https://github.com/pmd/pmd/commit/c476f4c06cdc10f1f76321aba7e4dd75973f518c
  Author: Andreas Dangel 
  Date:   2024-05-02 (Thu, 02 May 2024)

  Changed paths:
M .all-contributorsrc
M .github/workflows/build.yml
M .github/workflows/git-repo-sync.yml
M .github/workflows/troubleshooting.yml
M Dangerfile
M do-release.sh
M docs/_config.yml
M docs/pages/pmd/projectdocs/committers/releasing.md
M docs/pages/pmd/projectdocs/credits.md
M docs/pages/release_notes.md
M docs/pages/release_notes_old.md
M docs/pages/release_notes_pmd7.md
M pmd-ant/pom.xml
M pmd-apex/pom.xml
M 
pmd-apex/src/main/java/net/sourceforge/pmd/lang/apex/rule/design/CognitiveComplexityRule.java
M 
pmd-apex/src/main/java/net/sourceforge/pmd/lang/apex/rule/design/CyclomaticComplexityRule.java
M pmd-cli/pom.xml
M pmd-coco/pom.xml
M pmd-compat6/pom.xml
M pmd-core/pom.xml
M pmd-core/src/main/java/net/sourceforge/pmd/lang/rule/RuleSetFactory.java
M 
pmd-core/src/main/java/net/sourceforge/pmd/lang/rule/xpath/internal/BaseNodeInfo.java
M 
pmd-core/src/test/java/net/sourceforge/pmd/lang/rule/RuleSetFactoryMessagesTest.java
M 
pmd-core/src/test/java/net/sourceforge/pmd/lang/rule/RulesetFactoryTestBase.java
M pmd-cpp/pom.xml
M pmd-cs/pom.xml
M pmd-dart/pom.xml
M pmd-dist/pom.xml
M pmd-doc/pom.xml
M pmd-fortran/pom.xml
M pmd-gherkin/pom.xml
M pmd-go/pom.xml
M pmd-groovy/pom.xml
M pmd-html/pom.xml
M pmd-java/pom.xml
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/bestpractices/AccessorMethodGenerationRule.java
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/bestpractices/MissingOverrideRule.java
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/bestpractices/UnnecessaryVarargsArrayCreationRule.java
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/bestpractices/UnusedFormalParameterRule.java
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/bestpractices/UnusedPrivateMethodRule.java
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/codestyle/AbstractNamingConventionRule.java
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/codestyle/FieldNamingConventionsRule.java
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/codestyle/IdenticalCatchBranchesRule.java
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/codestyle/LinguisticNamingRule.java
M 
pmd-java/src/main/java/ne

[pmd-commits] [pmd/pmd] 227438: Update documentation

2024-05-02 Thread Machine account for PMD via Pmd-commits
  Branch: refs/heads/gh-pages
  Home:   https://github.com/pmd/pmd
  Commit: 227438b86bce1234d49fe9b2b6d4ccfd4a290747
  https://github.com/pmd/pmd/commit/227438b86bce1234d49fe9b2b6d4ccfd4a290747
  Author: PMD CI (pmd-bot) 
  Date:   2024-05-02 (Thu, 02 May 2024)

  Changed paths:
M 404.html
M feed.xml
M index.html
M license.html
M news.html
M news_archive.html
M pmd_about_help.html
M pmd_devdocs_building.html
M pmd_devdocs_development.html
M pmd_devdocs_how_pmd_works.html
M pmd_devdocs_logging.html
M pmd_devdocs_major_adding_new_cpd_language.html
M pmd_devdocs_major_adding_new_language_antlr.html
M pmd_devdocs_major_adding_new_language_javacc.html
M pmd_devdocs_major_rule_guidelines.html
M pmd_devdocs_pmdtester.html
M pmd_devdocs_roadmap.html
M pmd_devdocs_rule_deprecation_policy.html
M pmd_devdocs_writing_documentation.html
M pmd_languages_apex.html
M pmd_languages_coco.html
M pmd_languages_configuration.html
M pmd_languages_cpp.html
M pmd_languages_cs.html
M pmd_languages_dart.html
M pmd_languages_fortran.html
M pmd_languages_gherkin.html
M pmd_languages_go.html
M pmd_languages_groovy.html
M pmd_languages_html.html
M pmd_languages_index.html
M pmd_languages_java.html
M pmd_languages_js_ts.html
M pmd_languages_jsp.html
M pmd_languages_julia.html
M pmd_languages_kotlin.html
M pmd_languages_lua.html
M pmd_languages_matlab.html
M pmd_languages_modelica.html
M pmd_languages_objectivec.html
M pmd_languages_perl.html
M pmd_languages_php.html
M pmd_languages_plsql.html
M pmd_languages_python.html
M pmd_languages_ruby.html
M pmd_languages_scala.html
M pmd_languages_swift.html
M pmd_languages_tsql.html
M pmd_languages_velocity.html
M pmd_languages_visualforce.html
M pmd_languages_xml.html
M pmd_projectdocs_committers_infrastructure.html
M pmd_projectdocs_committers_main_landing_page.html
M pmd_projectdocs_committers_merging_pull_requests.html
M pmd_projectdocs_committers_releasing.html
M pmd_projectdocs_credits.html
M pmd_projectdocs_decisions.html
M pmd_projectdocs_decisions_adr_1.html
M pmd_projectdocs_decisions_adr_2.html
M pmd_projectdocs_decisions_adr_3.html
M pmd_projectdocs_decisions_adr_NNN.html
M pmd_projectdocs_faq.html
M pmd_projectdocs_logo.html
M pmd_projectdocs_trivia_meaning.html
M pmd_projectdocs_trivia_news.html
M pmd_projectdocs_trivia_products.html
M pmd_projectdocs_trivia_similarprojects.html
M pmd_release_notes.html
M pmd_release_notes_old.html
M pmd_release_notes_pmd7.html
M pmd_rules_apex.html
M pmd_rules_apex_bestpractices.html
M pmd_rules_apex_codestyle.html
M pmd_rules_apex_design.html
M pmd_rules_apex_documentation.html
M pmd_rules_apex_errorprone.html
M pmd_rules_apex_performance.html
M pmd_rules_apex_security.html
M pmd_rules_ecmascript.html
M pmd_rules_ecmascript_bestpractices.html
M pmd_rules_ecmascript_codestyle.html
M pmd_rules_ecmascript_errorprone.html
M pmd_rules_html.html
M pmd_rules_html_bestpractices.html
M pmd_rules_java.html
M pmd_rules_java_bestpractices.html
M pmd_rules_java_codestyle.html
M pmd_rules_java_design.html
M pmd_rules_java_documentation.html
M pmd_rules_java_errorprone.html
M pmd_rules_java_multithreading.html
M pmd_rules_java_performance.html
M pmd_rules_java_security.html
M pmd_rules_jsp.html
M pmd_rules_jsp_bestpractices.html
M pmd_rules_jsp_codestyle.html
M pmd_rules_jsp_design.html
M pmd_rules_jsp_errorprone.html
M pmd_rules_jsp_security.html
M pmd_rules_kotlin.html
M pmd_rules_kotlin_bestpractices.html
M pmd_rules_kotlin_errorprone.html
M pmd_rules_modelica.html
M pmd_rules_modelica_bestpractices.html
M pmd_rules_plsql.html
M pmd_rules_plsql_bestpractices.html
M pmd_rules_plsql_codestyle.html
M pmd_rules_plsql_design.html
M pmd_rules_plsql_errorprone.html
M pmd_rules_pom.html
M pmd_rules_pom_errorprone.html
M pmd_rules_scala.html
M pmd_rules_swift.html
M pmd_rules_swift_bestpractices.html
M pmd_rules_swift_errorprone.html
M pmd_rules_velocity.html
M pmd_rules_velocity_bestpractices.html
M pmd_rules_velocity_design.html
M pmd_rules_velocity_errorprone.html
M pmd_rules_visualforce.html
M pmd_rules_visualforce_security.html
M pmd_rules_xml.html
M pmd_rules_xml_bestpractices.html
M pmd_rules_xml_errorprone.html
M pmd_rules_xsl.html
M pmd_rules_xsl_codestyle.html
M pmd_rules_xsl_performance.html
M pmd_userdocs_3rdpartyrulesets.html
M pmd_userdocs_best_practices.html
M pmd_userdocs_cli_reference.html
M pmd_userdocs_configuring_rules.html
M pmd_userdocs_cpd.html
M pmd_userdocs_cpd_report_formats.html
M pmd_userdocs_extending_ast_du

[pmd-commits] [pmd/pmd] e81449: fixes

2024-05-02 Thread Andreas Dangel via Pmd-commits
  Branch: refs/heads/master
  Home:   https://github.com/pmd/pmd
  Commit: e81449db4a5a8710036fb73d4bfc350a4a988baa
  https://github.com/pmd/pmd/commit/e81449db4a5a8710036fb73d4bfc350a4a988baa
  Author: Clément Fournier 
  Date:   2024-04-29 (Mon, 29 Apr 2024)

  Changed paths:
M pmd-core/src/main/java/net/sourceforge/pmd/cpd/CpdAnalysis.java
M 
pmd-core/src/main/java/net/sourceforge/pmd/lang/document/BaseMappedDocument.java

  Log Message:
  ---
  fixes


  Commit: fb17f7ff9aaf9aee3a1b7620e9dfe0ee02a126f7
  https://github.com/pmd/pmd/commit/fb17f7ff9aaf9aee3a1b7620e9dfe0ee02a126f7
  Author: Clément Fournier 
  Date:   2024-04-29 (Mon, 29 Apr 2024)

  Changed paths:
M pmd-core/src/main/java/net/sourceforge/pmd/cpd/CpdAnalysis.java
M 
pmd-core/src/main/java/net/sourceforge/pmd/lang/ast/FileAnalysisException.java
M pmd-core/src/test/java/net/sourceforge/pmd/cpd/CpdAnalysisTest.java
M pmd-core/src/test/java/net/sourceforge/pmd/lang/DummyLanguageModule.java

  Log Message:
  ---
  Add test


  Commit: 4c96e678af746fe7fa9eafcf53c4ce52e17816e2
  https://github.com/pmd/pmd/commit/4c96e678af746fe7fa9eafcf53c4ce52e17816e2
  Author: Clément Fournier 
  Date:   2024-04-29 (Mon, 29 Apr 2024)

  Changed paths:
M 
pmd-core/src/main/java/net/sourceforge/pmd/lang/document/BaseMappedDocument.java
A 
pmd-core/src/test/java/net/sourceforge/pmd/lang/document/FragmentedTextDocumentTest.java

  Log Message:
  ---
  Add test for document fix


  Commit: d773088661e4340be9b19dc1d74c52e32458a0d9
  https://github.com/pmd/pmd/commit/d773088661e4340be9b19dc1d74c52e32458a0d9
  Author: Clément Fournier 
  Date:   2024-04-29 (Mon, 29 Apr 2024)

  Changed paths:
M pmd-core/src/test/java/net/sourceforge/pmd/cpd/CpdAnalysisTest.java

  Log Message:
  ---
  Split unit test


  Commit: 5bb6ece01ab1f67c8ed2832774782f6363edacf1
  https://github.com/pmd/pmd/commit/5bb6ece01ab1f67c8ed2832774782f6363edacf1
  Author: Andreas Dangel 
  Date:   2024-05-02 (Thu, 02 May 2024)

  Changed paths:
M docs/pages/release_notes.md

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


  Commit: 42ffb31ca07822793ccbf2ada92ed803c52f4f72
  https://github.com/pmd/pmd/commit/42ffb31ca07822793ccbf2ada92ed803c52f4f72
  Author: Andreas Dangel 
  Date:   2024-05-02 (Thu, 02 May 2024)

  Changed paths:
M docs/pages/release_notes.md
M pmd-core/src/main/java/net/sourceforge/pmd/cpd/CpdAnalysis.java
M 
pmd-core/src/main/java/net/sourceforge/pmd/lang/ast/FileAnalysisException.java
M 
pmd-core/src/main/java/net/sourceforge/pmd/lang/document/BaseMappedDocument.java
M pmd-core/src/test/java/net/sourceforge/pmd/cpd/CpdAnalysisTest.java
M pmd-core/src/test/java/net/sourceforge/pmd/lang/DummyLanguageModule.java
A 
pmd-core/src/test/java/net/sourceforge/pmd/lang/document/FragmentedTextDocumentTest.java

  Log Message:
  ---
  [cpd] Fix CPD crashes about unicode escapes (#4983)

Merge pull request #4983 from oowekyala:cpd-fix-crashes


Compare: https://github.com/pmd/pmd/compare/99aef2450975...42ffb31ca078

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


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits


[pmd-commits] [pmd/pmd] 03b8d1: Fix #4912 - grammar for TWR allows this expression

2024-05-02 Thread Andreas Dangel via Pmd-commits
  Branch: refs/heads/master
  Home:   https://github.com/pmd/pmd
  Commit: 03b8d1acef9cae64db4fc1e0458f59756516af3a
  https://github.com/pmd/pmd/commit/03b8d1acef9cae64db4fc1e0458f59756516af3a
  Author: Clément Fournier 
  Date:   2024-04-05 (Fri, 05 Apr 2024)

  Changed paths:
M pmd-java/etc/grammar/Java.jjt
M pmd-java/src/main/java/net/sourceforge/pmd/lang/java/ast/ASTResource.java
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/ast/internal/PrettyPrintingUtil.java
M 
pmd-java/src/test/kotlin/net/sourceforge/pmd/lang/java/ast/ASTTryStatementTest.kt

  Log Message:
  ---
  Fix #4912 - grammar for TWR allows this expression


  Commit: e636c206f063014ffaf0601d9da9e2412bbc70dd
  https://github.com/pmd/pmd/commit/e636c206f063014ffaf0601d9da9e2412bbc70dd
  Author: Clément Fournier 
  Date:   2024-04-05 (Fri, 05 Apr 2024)

  Changed paths:
M pmd-java/src/main/java/net/sourceforge/pmd/lang/java/ast/ASTResource.java

  Log Message:
  ---
  Doc


  Commit: 32e56469038346d7c73ec504db64b9585a751046
  https://github.com/pmd/pmd/commit/32e56469038346d7c73ec504db64b9585a751046
  Author: Clément Fournier 
  Date:   2024-04-05 (Fri, 05 Apr 2024)

  Changed paths:
M docs/pages/release_notes.md
M pmd-ant/pom.xml
M pmd-apex/pom.xml
M pmd-cli/pom.xml
M 
pmd-cli/src/main/java/net/sourceforge/pmd/cli/commands/internal/CpdGuiCommand.java
M pmd-core/pom.xml
M pmd-core/src/main/java/net/sourceforge/pmd/AbstractConfiguration.java
M pmd-core/src/main/java/net/sourceforge/pmd/PMDConfiguration.java
M pmd-core/src/main/java/net/sourceforge/pmd/cpd/CPDConfiguration.java
M pmd-core/src/main/java/net/sourceforge/pmd/lang/LanguageRegistry.java
M pmd-core/src/test/java/net/sourceforge/pmd/PmdConfigurationTest.java
M pmd-core/src/test/java/net/sourceforge/pmd/cpd/CPDConfigurationTest.java
A pmd-core/src/test/java/net/sourceforge/pmd/lang/CpdOnlyDummyLanguage.java
A 
pmd-core/src/test/java/net/sourceforge/pmd/lang/DummyLanguageNoCapabilities.java
M 
pmd-core/src/test/resources/META-INF/services/net.sourceforge.pmd.lang.Language
M pmd-doc/pom.xml
M pmd-java/pom.xml
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/rule/codestyle/UnnecessaryImportRule.java
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/codestyle/UselessParenthesesRule.java
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/design/SingularFieldRule.java
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/errorprone/CloseResourceRule.java
M pmd-java/src/main/java/net/sourceforge/pmd/lang/java/types/JClassType.java
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/types/internal/infer/ExprCheckHelper.java
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/types/internal/infer/Infer.java
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/types/internal/infer/InferenceContext.java
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/types/package-info.java
M pmd-java/src/main/resources/category/java/codestyle.xml
M pmd-java/src/main/resources/category/java/errorprone.xml
M 
pmd-java/src/test/java/net/sourceforge/pmd/lang/java/ast/internal/PrettyPrintingUtilTest.java
M 
pmd-java/src/test/kotlin/net/sourceforge/pmd/lang/java/types/internal/infer/ExplicitTypesTest.kt
M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/rule/bestpractices/xml/ArrayIsStoredDirectly.xml
M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/rule/codestyle/xml/UnnecessaryImport.xml
M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/rule/errorprone/xml/CloseResource.xml
M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/rule/errorprone/xml/EmptyCatchBlock.xml
M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/rule/errorprone/xml/InvalidLogMessageFormat.xml
M pmd-kotlin/pom.xml
M pmd-modelica/pom.xml
M pmd-plsql/pom.xml
M pmd-scala-modules/pmd-scala-common/pom.xml
M pmd-visualforce/pom.xml
M pmd-xml/pom.xml
M pom.xml

  Log Message:
  ---
  Merge branch 'master' into issue4912-java-grammar-fix


  Commit: eccd99bfd624203ab801f612fda383d16ae745f0
  https://github.com/pmd/pmd/commit/eccd99bfd624203ab801f612fda383d16ae745f0
  Author: Clément Fournier 
  Date:   2024-04-05 (Fri, 05 Apr 2024)

  Changed paths:
M docs/pages/release_notes.md

  Log Message:
  ---
  release notes


  Commit: 32680d5b8349070ec870aedfe8e2a45937cf31f2
  https://github.com/pmd/pmd/commit/32680d5b8349070ec870aedfe8e2a45937cf31f2
  Author: Juan Martín Sotuyo Dodero 
  Date:   2024-04-16 (Tue, 16 Apr 2024)

  Changed paths:
M .all-contributorsrc
M .ci/build.sh
M docs/pages/pmd/projectdocs/credits.md
M docs/pages/pmd/userdocs/suppressing_warnings.md
M docs/pages/release_notes.

[pmd-commits] [pmd/pmd] 28cf1d: Update documentation

2024-05-02 Thread Machine account for PMD via Pmd-commits
  Branch: refs/heads/gh-pages
  Home:   https://github.com/pmd/pmd
  Commit: 28cf1d4b87fc629f80c0da4af102b022483c59f3
  https://github.com/pmd/pmd/commit/28cf1d4b87fc629f80c0da4af102b022483c59f3
  Author: PMD CI (pmd-bot) 
  Date:   2024-05-02 (Thu, 02 May 2024)

  Changed paths:
M feed.xml
M pmd_release_notes.html

  Log Message:
  ---
  Update documentation

https://github.com/pmd/pmd/actions/runs/8921766029
https://github.com/pmd/pmd/compare/99aef2450975...42ffb31ca078



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


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits


[pmd-commits] [pmd/pmd] 4cd5ba: Update documentation

2024-05-02 Thread Machine account for PMD via Pmd-commits
  Branch: refs/heads/gh-pages
  Home:   https://github.com/pmd/pmd
  Commit: 4cd5babaef8fb29c73c1e6a6ae41fbeadafb04f6
  https://github.com/pmd/pmd/commit/4cd5babaef8fb29c73c1e6a6ae41fbeadafb04f6
  Author: PMD CI (pmd-bot) 
  Date:   2024-05-02 (Thu, 02 May 2024)

  Changed paths:
M feed.xml
M pmd_release_notes.html

  Log Message:
  ---
  Update documentation

https://github.com/pmd/pmd/actions/runs/8922059794
https://github.com/pmd/pmd/compare/42ffb31ca078...435f0dc7b3d2



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


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits


[pmd-commits] [pmd/pmd] e327a5: Fix impl of ASTVariableId::isResourceDeclaration

2024-05-02 Thread Andreas Dangel via Pmd-commits
  Branch: refs/heads/master
  Home:   https://github.com/pmd/pmd
  Commit: e327a548a4f4f30be8f8aa7ad3ce1a95b04e0cbc
  https://github.com/pmd/pmd/commit/e327a548a4f4f30be8f8aa7ad3ce1a95b04e0cbc
  Author: Clément Fournier 
  Date:   2024-04-30 (Tue, 30 Apr 2024)

  Changed paths:
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/ast/ASTVariableId.java
M 
pmd-java/src/test/kotlin/net/sourceforge/pmd/lang/java/ast/ASTTryStatementTest.kt
M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/ast/ParserCornerCases17.txt
M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/ast/jdkversiontests/java21p/Jep443_UnnamedPatternsAndVariables.txt
M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/ast/jdkversiontests/java22/Jep456_UnnamedPatternsAndVariables.txt

  Log Message:
  ---
  Fix impl of ASTVariableId::isResourceDeclaration


  Commit: b6a933b4fcd64a44dbee7f7a9acefdd8f1c80948
  https://github.com/pmd/pmd/commit/b6a933b4fcd64a44dbee7f7a9acefdd8f1c80948
  Author: Andreas Dangel 
  Date:   2024-05-02 (Thu, 02 May 2024)

  Changed paths:
M docs/pages/release_notes.md

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


  Commit: a2139be00b24d691f21b9a840bb9d82112d745c4
  https://github.com/pmd/pmd/commit/a2139be00b24d691f21b9a840bb9d82112d745c4
  Author: Andreas Dangel 
  Date:   2024-05-02 (Thu, 02 May 2024)

  Changed paths:
M docs/pages/release_notes.md
M 
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/ast/ASTVariableId.java
M 
pmd-java/src/test/kotlin/net/sourceforge/pmd/lang/java/ast/ASTTryStatementTest.kt
M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/ast/ParserCornerCases17.txt
M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/ast/jdkversiontests/java21p/Jep443_UnnamedPatternsAndVariables.txt
M 
pmd-java/src/test/resources/net/sourceforge/pmd/lang/java/ast/jdkversiontests/java22/Jep456_UnnamedPatternsAndVariables.txt

  Log Message:
  ---
  [java] Fix impl of ASTVariableId::isResourceDeclaration / 
VariableId/@ResourceDeclaration (#4988)

Merge pull request #4988 from oowekyala:java-fix-isResourceDeclaration


Compare: https://github.com/pmd/pmd/compare/435f0dc7b3d2...a2139be00b24

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


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits


[pmd-commits] [pmd/pmd] d4ab94: Update documentation

2024-05-02 Thread Machine account for PMD via Pmd-commits
  Branch: refs/heads/gh-pages
  Home:   https://github.com/pmd/pmd
  Commit: d4ab946e771883659e90ba0b43e814f88aaf2a88
  https://github.com/pmd/pmd/commit/d4ab946e771883659e90ba0b43e814f88aaf2a88
  Author: PMD CI (pmd-bot) 
  Date:   2024-05-02 (Thu, 02 May 2024)

  Changed paths:
M feed.xml
M pmd_release_notes.html

  Log Message:
  ---
  Update documentation

https://github.com/pmd/pmd/actions/runs/8922647919
https://github.com/pmd/pmd/compare/435f0dc7b3d2...a2139be00b24



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


___
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits