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

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


    from 6d082ad5aa7 Merge pull request #5348 from apache/delivery
     add 1feccf82bce Tomcat 11 min supported Java is 17
     add 0e504e59118 Merge pull request #5340 from pepness/tomcat-11-fix
     add ddf51add9c5 Springboot artifacts fix (#5352)
     add d751a932eb3 Proper escaping of TNS_ADMIN path. Select JDBC driver with 
defined implementation. (#5363)
     add a51b802c590 Import local schema to avoid DNS lookup in build
     add b68e3fba62c Merge pull request #5372 from jgneff/import-local-schema
     add 3081ac9a1e4 fix reformatting of annotated records.
     add cfa8c6372e7 Merge pull request #5374 from 
mbien/annotated-record-reformatter-fix
     add 9887c8d848b Use NotifyDescriptor.ComposedInput for Add ADB command 
(#5353) * Use NotifyDescriptor.ComposedInput for Add ADB command * Fixing steps 
count, repeat for empty username
     add 4aa7012bdb7 Merge pull request #5389 from 
sdedic/oci/add_adb_action_sync
     add e8e67fe16eb VSNetBeans changelog update for 16.0.301 and 17.0
     add 49a95e98dd9 Mention also 17.0
     add 22e143d2f5c Merge pull request #5386 from MartinBalin/delivery
     add b82df809031 [NETBEANS-4054] Ensuring progress when javac crashes while 
batch evaluating hints.
     add 3e4dd33594d Merge pull request #5384 from jlahoda/NETBEANS-4054
     add 3436a10491f PHP: removed built-in type boolean
     add a54e469df1f Merge pull request #5294 from 
troizet/php_remove_built_in_type_boolean
     add 05e0b0feb00 React on both build and compile goals.
     add 071b9d19372 Merge pull request #5396 from 
sdedic/micronaut/native-image-compile
     add 6543da0774f Prevent NullPointerException when caret is not present on 
text component
     add ec09f981a4f Merge pull request #5393 from matthiasblaesing/npe_lsp
     add 11c7a3bd9ab Fix POM Graph colors for dark themes.
     add ba163d899fe Merge pull request #5391 from johntor/delivery
     new ac2b269fa33 Merge pull request #5366 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:
 .../modules/cloud/oracle/actions/AddADBAction.java | 144 +++++++++------
 .../cloud/oracle/actions/DownloadWalletAction.java | 136 +++++++++-----
 .../cloud/oracle/actions/DownloadWalletDialog.java |   2 +-
 .../j2ee/dd/impl/resources/jakartaee_10.xsd        |   2 +-
 enterprise/micronaut/nbproject/project.xml         |   2 +-
 .../micronaut/maven/MicronautMavenConstants.java   |  10 +-
 .../maven/MicronautPackagingArtifactsImpl.java     | 106 ++++++++---
 .../netbeans/modules/micronaut/resources/layer.xml |  13 ++
 .../micronaut/resources/spring-actions-maven.xml   |  32 ++++
 .../modules/tomcat5/j2ee/TomcatPlatformImpl.java   |   2 +-
 .../client/bindings/GoToMarkOccurrencesAction.java |   7 +-
 .../lsp/client/bindings/MarkOccurrences.java       |  33 +++-
 .../refactoring/RefactoringActionsProvider.java    |  13 +-
 .../netbeans/modules/java/graph/NodeWidget.java    |  90 ++++++----
 java/java.lsp.server/vscode/CHANGELOG.md           |   9 +
 .../modules/java/source/save/Reformatter.java      |   6 +-
 .../modules/java/source/save/FormatingTest.java    |  39 +++-
 .../org/netbeans/lib/nbjavac/services/NBAttr.java  |  12 ++
 java/maven/apichanges.xml                          |  15 ++
 java/maven/nbproject/project.properties            |   2 +-
 .../modules/maven/api/execute/RunUtils.java        |  25 +++
 .../java/hints/spiimpl/batch/BatchSearch.java      |  12 +-
 .../java/hints/spiimpl/batch/BatchSearchTest.java  | 196 +++++++++++++++++----
 .../php/editor/actions/UsedNamesCollector.java     |   6 +-
 .../modules/php/editor/model/impl/Type.java        |  10 +-
 .../php/editor/model/impl/VariousUtils.java        |   2 +-
 .../IdenticalComparisonSuggestion.java             |   1 -
 .../unit/data/testfiles/actions/useCase_09.php     |  11 ++
 .../testfiles/actions/useCase_09.php.usedNames     |   2 +
 .../unit/data/testfiles/actions/useCase_10.php     |  11 ++
 .../testfiles/actions/useCase_10.php.usedNames     |   2 +
 ...tInstanceOverrideMethodWithGuessingBoolType.php |  11 ++
 ...ceOverrideMethodWithGuessingBoolType_01.codegen |   3 +
 ...eOverrideMethodWithGuessingBoolType_02.codegen} |   0
 .../issue235450.php.testLowercase_01.completion    |   2 +-
 .../php/editor/actions/UsedNamesCollectorTest.java |   8 +
 .../SelectedPropertyMethodsCreatorTest.java        |  12 ++
 .../typinghooks/PhpCommentGeneratorTest.java       |  18 ++
 38 files changed, 783 insertions(+), 224 deletions(-)
 create mode 100644 
enterprise/micronaut/src/org/netbeans/modules/micronaut/resources/spring-actions-maven.xml
 create mode 100644 
php/php.editor/test/unit/data/testfiles/actions/useCase_09.php
 create mode 100644 
php/php.editor/test/unit/data/testfiles/actions/useCase_09.php.usedNames
 create mode 100644 
php/php.editor/test/unit/data/testfiles/actions/useCase_10.php
 create mode 100644 
php/php.editor/test/unit/data/testfiles/actions/useCase_10.php.usedNames
 create mode 100644 
php/php.editor/test/unit/data/testfiles/codegen/testInstanceOverrideMethodWithGuessingBoolType/testInstanceOverrideMethodWithGuessingBoolType.php
 create mode 100644 
php/php.editor/test/unit/data/testfiles/codegen/testInstanceOverrideMethodWithGuessingBoolType/testInstanceOverrideMethodWithGuessingBoolType.php.testInstanceOverrideMethodWithGuessingBoolType_01.codegen
 copy 
php/php.editor/test/unit/data/testfiles/codegen/{testInstanceOverrideMethodWithNullableType/testInstanceOverrideMethodWithNullableType.php.testInstanceOverrideMethodWithNullableType_02.codegen
 => 
testInstanceOverrideMethodWithGuessingBoolType/testInstanceOverrideMethodWithGuessingBoolType.php.testInstanceOverrideMethodWithGuessingBoolType_02.codegen}
 (100%)


---------------------------------------------------------------------
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