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

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


    from ecd09ef  Merge branch 'HtmlUiGradle'
     new f1dd7e5  Using Scripting API in platform/core.network
     new 1894e0c  Continue to specify class filter when using Nashorn engine
     new ef302df  Merge branch 'master' into CoreNetworkAndScriptingAPI
     new 294cb63  Allow exit from the unit test
     new 6247e88  Merging with recent master
     new c9fdbfc  Updating to GraalVM RC16
     new f2c5275  ConfigureProxy task to set proxy before downloading Gradle
     new a499252  Can't build web.core module in our corporate environment 
without having proper proxy setup detected.
     new a297bcf  Setting up proxy before building web.core module
     new 8f60775  Merging with master and running with nashorn emulation
     new 4592738  icu4j is needed for Graal JS I18N support
     new d9ef75c  Make the default value of proxyPort property a number
     new db69ef4  Using released version 19.0.0 of GraalVM libraries
     new fb47be0  Adjusting to API changes in GraalVM SDK, Truffle and Graal.js 
modules
     new 1cb766d  Merge remote-tracking branch 'origin/master' into 
CoreNetworkAndScriptingAPI
     new d2bb159  Adjusting to GraalVM 19.0.0
     new bfbe61d  Adjusting version to 19.0.0
     new a0ebbb9  Sharing the license between 
ide/html.parser/external/icu4j-4_4_2-license.txt and 
webcommon/libs.graaljs/external/icu4j-62.1-license.txt
     new c5365c1  Use 1.7 compilation level even on newer JDKs
     new d0525af  Always set the proxy host property - even to empty string
     new 0b04f4d  Avoid configuration of the engines via global properties
     new 6468401  Describing the security model of GraalVM languages and 
crosslinking to the polyglot API documentation
     new 01a351e  Merge remote-tracking branch 'origin/master' into 
CoreNetworkAndScriptingAPI
     new afc27a4  Keep the hintful comment
     new f47f36c  Secure all script engines by default
     new f21511c  Control access to Java.type via a property
     new c3b95e1  Replacing allowAllAccess property with a builder 
configuration method
     new 5a0a6e7  Test the JavaScript engines in both 'all access' modes
     new 7a90c43  ALLOWED_PAC_ENGINES branding API to allow applications to 
restrict the engines used for PAC script evaluation
     new ae8dd1a  Only set the gradle.proxy.args if the resolved proxy is not 
empty
     new 30626a3  Attributing non-localizable strings with NOI18N comment
     new abd99c9  Removing redundant null check
     new 178b4c6  Tightening up security by removing access to common 
reflection entrypoints
     new f6e165c  Merge pull request #1092 from 
JaroslavTulach/CoreNetworkAndScriptingAPI

The 2612 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:
 enterprise/web.core/build.xml                      |   3 +
 groovy/gradle/build.xml                            |  13 +-
 ide/libs.graalsdk/arch.xml                         |   9 +-
 ide/libs.graalsdk/external/binaries-list           |   2 +-
 ....0-license.txt => graal-sdk-19.0.0-license.txt} |   4 +-
 .../nbproject/org-netbeans-libs-graalsdk.sig       | 465 ++++++++++++++++-
 ide/libs.graalsdk/nbproject/project.properties     |   2 +-
 ide/libs.graalsdk/nbproject/project.xml            |   6 +-
 .../src/org/netbeans/libs/graalsdk/GraalSDK.java   |  37 +-
 .../netbeans/libs/graalsdk/impl/GraalContext.java  |  42 +-
 .../libs/graalsdk/impl/GraalEngineFactory.java     |   2 +-
 .../libs/graalsdk/impl/GraalEnginesProvider.java   |  13 +-
 .../libs/graalsdk/JavaScriptEnginesTest.java       |  96 +++-
 .../netbeans/libs/graalsdk/ScriptingTutorial.java  |  16 +-
 ide/o.apache.xml.resolver/build.xml                |   2 +-
 nb/ide.branding/nbproject/project.xml              |   5 +
 .../modules/ide/branding/RealPacEngineTest.java    |  49 ++
 .../netbeans/nbbuild/extlibs/ConfigureProxy.java   | 150 ++++++
 .../netbeans/nbbuild/extlibs/DownloadBinaries.java |  64 +--
 nbbuild/javadoctools/links.xml                     |   1 +
 nbbuild/javadoctools/truffle/package-list          |  28 ++
 nbbuild/travis/scripting.sh                        |  13 +-
 platform/api.scripting/apichanges.xml              |  18 +
 platform/api.scripting/arch.xml                    | 105 ++--
 platform/api.scripting/manifest.mf                 |   2 +-
 .../api.scripting/nbproject/project.properties     |   2 +-
 .../src/org/netbeans/api/scripting/Scripting.java  | 230 ++++++++-
 .../org/netbeans/spi/scripting/EngineProvider.java |  14 +
 .../api/scripting/JavaScriptEnginesTest.java       |  53 +-
 .../org/netbeans/api/scripting/ScriptingTest.java  |  10 +
 platform/core.network/arch.xml                     |  25 +-
 platform/core.network/manifest.mf                  |   4 +-
 platform/core.network/nbproject/project.xml        |  18 +-
 .../core/network/proxy/NetworkProxyReloader.java   |   5 +-
 .../core/network/proxy/ProxyAutoConfig.java        |   4 +-
 .../core/network/proxy/pac/PacScriptEvaluator.java |   2 +-
 .../proxy/pac/datetime/PacUtilsDateTime.java       |   2 +-
 .../proxy/pac/impl/ClassFilterPacHelpers.java      |  42 --
 .../proxy/pac/impl/NbPacScriptEvaluator.java       | 192 ++++---
 .../core/network/utils/IpAddressUtils.java         |  32 +-
 .../test/unit/data/pacFiles2/pac-test-getclass.js  |  33 ++
 .../network/proxy/ProxyAutoConfigDirectTest.java   |   3 +
 .../core/network/proxy/pac/PacEngineTest.java      |   1 +
 .../proxy/pac/impl/NbPacScriptEvaluatorTest.java   |  48 ++
 .../proxy/pac/impl/PacHelperMethodsImplTest.java   |   6 +-
 .../org/netbeans/core/network/utils/FakeDns.java   |  32 +-
 .../core/network/utils/IpAddressUtilsTest.java     |   6 +-
 .../oql/engine/api/impl/OQLEngineImpl.java         |   2 +-
 .../oql/engine/api/impl/OQLEngineTest.java         |   9 -
 webcommon/libs.graaljs/external/binaries-list      |   5 +-
 .../libs.graaljs/external/icu4j-62.1-license.txt   |  39 ++
 ...{js-1.0.0-license.txt => js-19.0.0-license.txt} |   4 +-
 .../nbproject/org-netbeans-libs-graaljs.sig        |  67 +--
 .../libs.graaljs/nbproject/project.properties      |   5 +-
 webcommon/libs.graaljs/nbproject/project.xml       |  12 +-
 webcommon/libs.truffleapi/external/binaries-list   |   2 +-
 ...-license.txt => truffle-api-19.0.0-license.txt} |   4 +-
 .../nbproject/org-netbeans-libs-truffleapi.sig     | 555 ++++++++++++++-------
 .../libs.truffleapi/nbproject/project.properties   |   2 +-
 webcommon/libs.truffleapi/nbproject/project.xml    |   4 +-
 60 files changed, 1987 insertions(+), 634 deletions(-)
 rename ide/libs.graalsdk/external/{graal-sdk-1.0.0-license.txt => 
graal-sdk-19.0.0-license.txt} (97%)
 create mode 100644 
nb/ide.branding/test/unit/src/org/netbeans/modules/ide/branding/RealPacEngineTest.java
 create mode 100644 
nbbuild/antsrc/org/netbeans/nbbuild/extlibs/ConfigureProxy.java
 create mode 100644 nbbuild/javadoctools/truffle/package-list
 delete mode 100644 
platform/core.network/src/org/netbeans/core/network/proxy/pac/impl/ClassFilterPacHelpers.java
 create mode 100644 
platform/core.network/test/unit/data/pacFiles2/pac-test-getclass.js
 create mode 100644 
platform/core.network/test/unit/src/org/netbeans/core/network/proxy/pac/impl/NbPacScriptEvaluatorTest.java
 create mode 100644 webcommon/libs.graaljs/external/icu4j-62.1-license.txt
 rename webcommon/libs.graaljs/external/{js-1.0.0-license.txt => 
js-19.0.0-license.txt} (97%)
 rename webcommon/libs.truffleapi/external/{truffle-api-1.0.0-license.txt => 
truffle-api-19.0.0-license.txt} (97%)


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

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

Reply via email to