This is an automated email from the ASF dual-hosted git repository.
clebertsuconic pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
The following commit(s) were added to refs/heads/master by this push:
new caa19ab ARTEMIS-2598 Update netty version to 4.1.43.Final
new 2f68f00 This closes #2943
caa19ab is described below
commit caa19ab144b4b4f4c076c255f20f1d391f59738e
Author: brusdev <[email protected]>
AuthorDate: Thu Jan 16 11:58:37 2020 +0100
ARTEMIS-2598 Update netty version to 4.1.43.Final
Update netty version to 4.1.43.Final and netty-tcnative version to
2.0.26.Final.
Change restricted-security-client.policy because Netty 4.1.43.Final requires
access to two more files: /etc/os-release and /usr/lib/os-release.
---
pom.xml | 4 ++--
.../src/test/resources/restricted-security-client.policy | 2 ++
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/pom.xml b/pom.xml
index 6ed9787..a788c26 100644
--- a/pom.xml
+++ b/pom.xml
@@ -91,10 +91,10 @@
<maven.assembly.plugin.version>2.4</maven.assembly.plugin.version>
<mockito.version>2.25.0</mockito.version>
<jctools.version>2.1.2</jctools.version>
- <netty.version>4.1.34.Final</netty.version>
+ <netty.version>4.1.43.Final</netty.version>
<!-- this is basically for tests -->
- <netty-tcnative-version>2.0.23.Final</netty-tcnative-version>
+ <netty-tcnative-version>2.0.26.Final</netty-tcnative-version>
<proton.version>0.33.2</proton.version>
<resteasy.version>3.0.19.Final</resteasy.version>
<slf4j.version>1.7.21</slf4j.version>
diff --git
a/tests/integration-tests/src/test/resources/restricted-security-client.policy
b/tests/integration-tests/src/test/resources/restricted-security-client.policy
index b888adb..45ea529 100644
---
a/tests/integration-tests/src/test/resources/restricted-security-client.policy
+++
b/tests/integration-tests/src/test/resources/restricted-security-client.policy
@@ -23,6 +23,8 @@ grant {
permission java.net.SocketPermission "*:1024-", "connect";
// Note1: normally, we don't need this permission since the applet
allows reading jars loaded by the applet
// Note2: Which of the following two java.io.FilePermission is
necessary depends on the exact Maven command
+ permission java.io.FilePermission "/etc/os-release", "read";
+ permission java.io.FilePermission "/usr/lib/os-release", "read";
permission java.io.FilePermission
"${activemq.basedir}/artemis-core-client/target/classes/-", "read";
permission java.io.FilePermission
"${activemq.basedir}/artemis-core-client/target/artemis-core-client-${project.version}.jar",
"read";
permission java.util.PropertyPermission
"activemq.version.property.filename", "read";