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

lkishalmi pushed a change to branch release122
in repository https://gitbox.apache.org/repos/asf/netbeans.git.


    from 249b77c  Upgrade payara-micro-maven-plugin to v1.3.0
     new 182b3c1  Stack trace analyzer needs to understand modular stack traces.
     new 54e4bff  Using Incomplete classpath to indicate unloadable Gradle 
project
     new 5c2f2f2  Annotation processors may generate class files: -that have a 
name different from any source file in the source roots -even while running in 
the editor
     new f6ef4ea  Reload external changes automatically in headless mode.
     new 91c7976  Notify successful execution as soon as Gradle build succeeds
     new 03801b1  Support ActionProgress to allow observing Gradle build process
     new cef1863  Perform BUILD when no single run/debug action is available
     new e3f1aed  Make sure Maven project is refreshed before build is over
     new 9a66197  [NETBEANS-4919] Avoiding dependency on javac internal classes 
from javadoc/.../Analyzer, using NetBeans' HTML information instead. (#2470)
     new 693cab3  Read mainClass configuration or property.
     new 1b29b55  [NETBEANS-4930] Upgrade Gradle Tooling 6.7 with JDK-15 Support
     new a2bdbac  [lsp] partial fix of invalidation of breakpoints during file 
open (#2462)
     new 15099a7  StatusDisplayer messages remoted to LSP client. (#2478)
     new 78a833a  Reducing LSP server messages on startup.
     new af35c99  [NETBEANS-4910] Correcting open and close events sent from 
the LSP client to the LSP server.
     new fc033ea  Handling of switch expressions and rule cases in Flow and 
NPECheck hint. (#2293)
     new 3e74232  Add support for static imports in code templates
     new 45bf3b3  [NETBEANS-3588] Code Templates not working in Java Editor in 
for loops (#2444)

The 18 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 extide/gradle/external/binaries-list               |   2 +-
 ...-bin-license.txt => gradle-6.7-bin-license.txt} |   2 +-
 ....2-bin-notice.txt => gradle-6.7-bin-notice.txt} |   0
 extide/gradle/netbeans-gradle-tooling/build.gradle |   6 +-
 .../gradle/wrapper/gradle-wrapper.properties       |   2 +-
 .../modules/gradle/ActionProviderImpl.java         |  13 +-
 .../modules/gradle/NbGradleProjectImpl.java        |   4 +-
 .../api/execute/GradleDistributionManager.java     |   1 +
 .../modules/gradle/api/execute/RunUtils.java       |   4 +-
 .../gradle/execute/GradleDaemonExecutor.java       |  44 +++
 extide/libs.gradle/external/binaries-list          |   2 +-
 ...ense.txt => gradle-tooling-api-6.7-license.txt} |   4 +-
 ...otice.txt => gradle-tooling-api-6.7-notice.txt} |   0
 extide/libs.gradle/manifest.mf                     |   2 +-
 extide/libs.gradle/nbproject/project.properties    |   2 +-
 extide/libs.gradle/nbproject/project.xml           |   2 +-
 .../org/netbeans/api/editor/EditorRegistry.java    |   5 +
 .../editor/lib2/EditorApiPackageAccessor.java      |   3 +
 ide/html.editor.lib/nbproject/project.xml          |   1 +
 .../lsp/client/bindings/BreadcrumbsImpl.java       |   3 +
 .../TextDocumentSyncServerCapabilityHandler.java   | 141 ++++++---
 ...extDocumentSyncServerCapabilityHandlerTest.java | 349 +++++++++++++++++++++
 .../classpath/AbstractGradleClassPathImpl.java     |  18 +-
 .../editor/java/JavaCodeTemplateFilter.java        | 175 ++++++-----
 .../editor/java/JavaCodeTemplateProcessor.java     |  40 ++-
 .../editor/java/JavaCodeTemplateProcessorTest.java | 122 ++++++-
 java/java.hints/nbproject/project.properties       |   2 +-
 java/java.hints/nbproject/project.xml              |   4 +
 .../netbeans/modules/java/hints/bugs/NPECheck.java |  97 +++++-
 .../modules/java/hints/introduce/Flow.java         |  79 ++++-
 .../java/hints/project/IncompleteClassPath.java    |   3 +-
 .../modules/java/hints/HideFieldByVarTest.java     |  15 +-
 .../modules/java/hints/bugs/NPECheckTest.java      |  38 +++
 .../modules/java/hints/introduce/FlowTest.java     |  49 +++
 java/java.lsp.server/script/etc/nbcode.conf        |   2 +-
 .../server/debugging/launch/NbLaunchDelegate.java  | 155 ++++++---
 .../server/protocol/NbCodeClientCapabilities.java  |  87 +++++
 .../lsp/server/protocol/NbCodeClientWrapper.java   | 120 +++++++
 .../lsp/server/protocol/NbCodeLanguageClient.java  |  49 +++
 .../modules/java/lsp/server/protocol/Server.java   |  83 ++++-
 .../server/protocol/ShowStatusMessageParams.java   |  78 +++++
 .../server/protocol/TextDocumentServiceImpl.java   |  59 +++-
 .../lsp/server/protocol/WorkspaceServiceImpl.java  |  33 +-
 .../lsp/server/protocol/WorkspaceUIContext.java    |  62 ++++
 .../lsp/server/ui/AbstractLspStatusDisplayer.java  |   5 +-
 .../modules/java/lsp/server/ui/UIContext.java      |  15 +
 .../java/lsp/server/protocol/ServerTest.java       | 236 +++++++++++---
 java/java.lsp.server/vscode/package.json           |   7 +-
 java/java.lsp.server/vscode/src/extension.ts       |  51 ++-
 java/java.lsp.server/vscode/src/nbcode.ts          |   4 +
 .../java.lsp.server/vscode/src/protocol.ts         |  47 +--
 .../java/stackanalyzer/StackLineAnalyser.java      |  21 +-
 .../java/stackanalyzer/StackLineAnalyserTest.java  |   8 +
 .../netbeans/api/java/source/TreeUtilities.java    |   5 +-
 .../netbeans/modules/java/source/TreeShims.java    |  25 ++
 .../java/source/parsing/CompilationInfoImpl.java   |   8 +-
 .../java/source/parsing/OutputFileManager.java     |  48 ++-
 .../parsing/WriteArbitraryClassFileAPTest.java     | 269 ++++++++++++++++
 java/javadoc/nbproject/project.xml                 |  47 +--
 .../netbeans/modules/javadoc/hints/Analyzer.java   |  46 ++-
 .../netbeans/modules/maven/ActionProviderImpl.java |   6 +-
 .../netbeans/modules/maven/NbMavenProjectImpl.java |   7 +-
 .../netbeans/modules/maven/api/NbMavenProject.java |   5 +-
 .../maven/execute/MavenCommandLineExecutor.java    |  19 +-
 .../modules/maven/runjar/RunJarPrereqChecker.java  |  60 +++-
 .../maven/runjar/RunJarPrereqCheckerTest.java      | 134 ++++++++
 .../org/netbeans/nbbuild/extlibs/ignored-overlaps  |  25 +-
 .../src/org/openide/text/DataEditorSupport.java    |  18 +-
 68 files changed, 2623 insertions(+), 455 deletions(-)
 rename extide/gradle/external/{gradle-4.10.2-bin-license.txt => 
gradle-6.7-bin-license.txt} (99%)
 rename extide/gradle/external/{gradle-4.10.2-bin-notice.txt => 
gradle-6.7-bin-notice.txt} (100%)
 rename extide/libs.gradle/external/{gradle-tooling-api-6.6-license.txt => 
gradle-tooling-api-6.7-license.txt} (99%)
 rename extide/libs.gradle/external/{gradle-tooling-api-6.6-notice.txt => 
gradle-tooling-api-6.7-notice.txt} (100%)
 create mode 100644 
ide/lsp.client/test/unit/src/org/netbeans/modules/lsp/client/bindings/TextDocumentSyncServerCapabilityHandlerTest.java
 create mode 100644 
java/java.lsp.server/src/org/netbeans/modules/java/lsp/server/protocol/NbCodeClientCapabilities.java
 create mode 100644 
java/java.lsp.server/src/org/netbeans/modules/java/lsp/server/protocol/NbCodeClientWrapper.java
 create mode 100644 
java/java.lsp.server/src/org/netbeans/modules/java/lsp/server/protocol/NbCodeLanguageClient.java
 create mode 100644 
java/java.lsp.server/src/org/netbeans/modules/java/lsp/server/protocol/ShowStatusMessageParams.java
 create mode 100644 
java/java.lsp.server/src/org/netbeans/modules/java/lsp/server/protocol/WorkspaceUIContext.java
 copy extide/gradle/netbeans-gradle-tooling/build.gradle => 
java/java.lsp.server/vscode/src/protocol.ts (54%)
 create mode 100644 
java/java.source.base/test/unit/src/org/netbeans/modules/java/source/parsing/WriteArbitraryClassFileAPTest.java


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to