You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by sk...@apache.org on 2022/04/29 11:46:57 UTC

[netbeans] branch release140 updated (ca91d1962c -> 9e9f14d532)

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

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


    from ca91d1962c Merge pull request #4006 from lkishalmi/fix-npe-in-unuseddetector
     add b260d83fb2 Removing dependency on org.netbeans.api.progress.nb
     add 0fca3637f1 Obtain Openable from FileObject without DataObject API needed
     add c8faa73cca Less references to org.openide.util.Exceptions
     add d66ce57938 Test InternalSampler as well as CLISampler
     add 9f4ec39ed7 When NbBundle/Progress is missing, create a standalone sampler
     add 51345ce1fc disable failing tests until resolved.
     add 477a06c96d Merge pull request #4015 from mbien/disable-failing-tests
     add eb20bcf4f9 Fixing ElementJavadoc for files without package clause.
     add 3483a23a65 Merge pull request #4030 from jlahoda/javadoc-no-package
     add 217f7df8f4 updated nb-javac18 plugin version and description (#4010)
     add 26447d1c22 Strip HTML tags in project problems.
     add 0266567dfa Merge pull request #4042 from sdedic/lsp/problems-strip-html
     add 1c93c8235f notice stub year update to 2022
     add 43af764d23 Merge pull request #4048 from apache/noticestub2022
     add a9db2e118f junixsocket is needed by com.jcraft.jsch needed by cpplite.debugger, needed by LSP.
     add 9249f2f6bb Merge pull request #4046 from sdedic/lsp/jsch-startup-error
     add 9e08ff4525 Prevent Type.Unknown to be cast to ClassType in VanilaCompileWorker
     add 4fe9e203af Merge pull request #4036 from lkishalmi/prevent-cce-in-vanilacompileworker
     add 5e75998d8c Less references to org.openide.util.Exceptions
     add 6df0404ec1 Merge pull request #4047 from jtulach/jtulach/SimplifySampler
     add ebd7e74c57 Add required public package.
     add 955a691b8f Do not evaluate PAC synchronously
     add 5fdd726cf3 Merge pull request #4041 from sdedic/platform/proxy-fixes
     add 583544cddb LSP Client: Handle CodeActions without workspace edits
     add 9c4ce34a0b LSP Client: Implement showMessage, showMessageRequest and logging
     add de5beb4394 LSP Client: Log unhandled requests and notifications from LSP server and return empty result
     add 67c21f7e2e Merge pull request #4049 from matthiasblaesing/typescript_codeaction_without_edit
     add fa9220c584 Merging with delivery
     add d5f29c12fd Merge pull request #4052 from jtulach/jtulach/SimplifySampler
     new 9e9f14d532 Merge pull request #4032 from apache/delivery

The 1 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:
 ide/libs.truffleapi/nbproject/project.xml          |   1 +
 .../src/org/netbeans/modules/lsp/client/Utils.java |   4 +-
 .../lsp/client/bindings/LanguageClientImpl.java    | 102 +++++++++++--
 .../nbcode/nbproject/platform.properties           |   1 -
 .../netbeans/modules/java/lsp/server/Utils.java    |  42 ++++++
 .../lsp/server/project/ProjectAlertPresenter.java  |  14 +-
 .../java/source/indexing/VanillaCompileWorker.java |  10 ++
 .../api/java/source/ui/ElementJavadoc.java         |   3 +-
 java/libs.nbjavacapi/manifest.mf                   |   2 +-
 .../netbeans/modules/nbjavac/api/Bundle.properties |   2 +-
 nbbuild/notice-stub.txt                            |   2 +-
 .../core/network/proxy/NbProxySelector.java        |   2 +-
 platform/sampler/nbproject/project.properties      |   2 +-
 platform/sampler/nbproject/project.xml             |  40 -----
 .../org/netbeans/modules/sampler/CLISampler.java   |   8 +-
 .../netbeans/modules/sampler/InternalSampler.java  |  31 ++--
 .../src/org/netbeans/modules/sampler/Sampler.java  |  15 +-
 .../modules/sampler/SamplesOutputStream.java       |   3 -
 .../netbeans/modules/sampler/SelfSampleVFS.java    |   4 +-
 .../modules/sampler/StandaloneSampler.java         |  55 +++++++
 .../modules/sampler/AbstractSamplerBase.java       | 167 +++++++++++++++++++++
 .../netbeans/modules/sampler/CLISampleTest.java    |  44 ++++++
 .../modules/sampler/DirectSamplerHandle.java       |  49 ++++++
 .../org/netbeans/modules/sampler/SamplerTest.java  | 145 ++----------------
 .../modules/sampler/StandaloneSamplerTest.java     | 117 +++++++++++++++
 25 files changed, 636 insertions(+), 229 deletions(-)
 create mode 100644 platform/sampler/src/org/netbeans/modules/sampler/StandaloneSampler.java
 create mode 100644 platform/sampler/test/unit/src/org/netbeans/modules/sampler/AbstractSamplerBase.java
 create mode 100644 platform/sampler/test/unit/src/org/netbeans/modules/sampler/CLISampleTest.java
 create mode 100644 platform/sampler/test/unit/src/org/netbeans/modules/sampler/DirectSamplerHandle.java
 create mode 100644 platform/sampler/test/unit/src/org/netbeans/modules/sampler/StandaloneSamplerTest.java


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

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


[netbeans] 01/01: Merge pull request #4032 from apache/delivery

Posted by sk...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch release140
in repository https://gitbox.apache.org/repos/asf/netbeans.git

commit 9e9f14d532c46ceab204a0ca1eddecfed08ed1fb
Merge: ca91d1962c d5f29c12fd
Author: Eric Barboni <sk...@apache.org>
AuthorDate: Fri Apr 29 13:46:53 2022 +0200

    Merge pull request #4032 from apache/delivery
    
    Sync delivery to release140 for 14-rc2

 ide/libs.truffleapi/nbproject/project.xml          |   1 +
 .../src/org/netbeans/modules/lsp/client/Utils.java |   4 +-
 .../lsp/client/bindings/LanguageClientImpl.java    | 102 +++++++++++--
 .../nbcode/nbproject/platform.properties           |   1 -
 .../netbeans/modules/java/lsp/server/Utils.java    |  42 ++++++
 .../lsp/server/project/ProjectAlertPresenter.java  |  14 +-
 .../java/source/indexing/VanillaCompileWorker.java |  10 ++
 .../api/java/source/ui/ElementJavadoc.java         |   3 +-
 java/libs.nbjavacapi/manifest.mf                   |   2 +-
 .../netbeans/modules/nbjavac/api/Bundle.properties |   2 +-
 nbbuild/notice-stub.txt                            |   2 +-
 .../core/network/proxy/NbProxySelector.java        |   2 +-
 platform/sampler/nbproject/project.properties      |   2 +-
 platform/sampler/nbproject/project.xml             |  40 -----
 .../org/netbeans/modules/sampler/CLISampler.java   |   8 +-
 .../netbeans/modules/sampler/InternalSampler.java  |  31 ++--
 .../src/org/netbeans/modules/sampler/Sampler.java  |  15 +-
 .../modules/sampler/SamplesOutputStream.java       |   3 -
 .../netbeans/modules/sampler/SelfSampleVFS.java    |   4 +-
 .../modules/sampler/StandaloneSampler.java         |  55 +++++++
 .../modules/sampler/AbstractSamplerBase.java       | 167 +++++++++++++++++++++
 .../netbeans/modules/sampler/CLISampleTest.java    |  44 ++++++
 .../modules/sampler/DirectSamplerHandle.java       |  49 ++++++
 .../org/netbeans/modules/sampler/SamplerTest.java  | 145 ++----------------
 .../modules/sampler/StandaloneSamplerTest.java     | 117 +++++++++++++++
 25 files changed, 636 insertions(+), 229 deletions(-)


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

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