From gustavo at infinispan.org Fri Nov 2 04:54:36 2018 From: gustavo at infinispan.org (Gustavo Fernandes) Date: Fri, 2 Nov 2018 08:54:36 +0000 Subject: [infinispan-dev] Infinispan 9.3.4.Final released! Message-ID: https://blog.infinispan.org/2018/11/infinispan-934final-released.html Cheers, Gustavo -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/infinispan-dev/attachments/20181102/8a851aa6/attachment.html From karesti at redhat.com Fri Nov 2 05:35:15 2018 From: karesti at redhat.com (Katia Aresti) Date: Fri, 2 Nov 2018 10:35:15 +0100 Subject: [infinispan-dev] Blog post about infinispan, spring-boot and near-caching Message-ID: Hi all, You can find the blog post here : https://blog.infinispan.org/2018/11/near-caching-with-spring-boot-and.html Thanks Tristan, Dan, Pedro for reviewing the content! Cheers, Katia -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/infinispan-dev/attachments/20181102/44fc219e/attachment.html From rory.odonnell at oracle.com Fri Nov 9 05:45:35 2018 From: rory.odonnell at oracle.com (Rory O'Donnell) Date: Fri, 9 Nov 2018 10:45:35 +0000 Subject: [infinispan-dev] JDK 12 , JDK 8u202 & Project Panama Early-Access builds available Message-ID: <025deab0-1229-d160-7132-5d95635b75b1@oracle.com> Hi Galder, *JDK 12 Early Access build 19 is available at : - jdk.java.net/12/* * These early-access, open-source builds are provided under the GNU General Public License, version?2, with the Classpath Exception . * Release Notes updates since last email o Build 18 ? JDK-8211883: Disable anon and NULL cipher suites + Crypto Roadmap Updated o Build 17 ? JDK-8211806: TLS 1.3 handshake server name indication is missing on a session resume o Build 16 ? JDK-8211866: TLS 1.3 CertificateRequest message sometimes offers disallowed signature algorithms o Build 17 ? JDK-8195793 : Remove GTE CyberTrust Global Root o Build 16 - JDK-8191053 : Provide a mechanism to make system's security manager immutable * JEPs proposed for JDK 12 so far: o JEP 230 - Microbenchmark Suite * JEPs targeted to JDK 12, so far o 325: Switch Expressions (Preview) o 326: Raw String Literals (Preview) o 340: One AArch64 Port, Not Two o 341: Default CDS Archives *JDK 8u202 Early Access build 03 is available at : - **http://jdk.java.net/8/* * JDK 8u202 timeline is available [1] o GA is scheduled for January 2019 *Project Panama Early-Access build 0 ***is available at : - http://jdk.java.net/panama/ ** * Early access builds from Project Panama * Early-access builds are provided under the GNU General Public License, version?2, with the Classpath Exception . * Feedback - Please send feedback via e-mail to panama-dev at openjdk.java.net . * To send e-mail to this address you must first subscribe to the mailing list . *Crypto Roadmap Updated [2] * Rgds,Rory [1] http://openjdk.java.net/projects/jdk8u/releases/8u202.html [2] https://java.com/en/jre-jdk-cryptoroadmap.html -- Rgds,Rory O'Donnell Quality Engineering Manager Oracle EMEA , Dublin, Ireland -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/infinispan-dev/attachments/20181109/3eb4719b/attachment.html From karesti at redhat.com Fri Nov 9 06:28:04 2018 From: karesti at redhat.com (Katia Aresti) Date: Fri, 9 Nov 2018 12:28:04 +0100 Subject: [infinispan-dev] Infinispan 9.4.1.Final and Infinispan-Spring-Boot 2.1.0.Final released! In-Reply-To: References: Message-ID: https://blog.infinispan.org/2018/11/infinispan-941final-and-infinispan.html Cheers, Katia -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/infinispan-dev/attachments/20181109/47a9f2aa/attachment.html From dan.berindei at gmail.com Wed Nov 21 11:06:50 2018 From: dan.berindei at gmail.com (Dan Berindei) Date: Wed, 21 Nov 2018 18:06:50 +0200 Subject: [infinispan-dev] PSA: How to debug an integration test Message-ID: I had to debug some JMX stuff today and I remembered that Gustavo wanted a guide for debugging ITs, so here goes: 1. Build the server mvn install -DskipTests -am -pl server/integration/testsuite 2. Unpack the server in the testsuite module mvn test -pl server/integration/testsuite 3. Try to run the IT from the IDE, it should fail because it can't find the server definition 4. Check the @RunningServer references at the top of the IT and search for them in arquillian.xml. E.g. JmxManagementIT uses "jmx-management-1", which is defined under 5. Add -Darquillian.launch= to your debug configuration 6. Your test should run now. I got an error about env.JAVA_HOME not being defined, I just added a JAVA_HOME environment variable in the debug configuration and it worked. The Arquillian server configuration may need other system properties. IntelliJ automatically picks up the system properties set in the failsafe execution [1] when it imports the project, but you may have to set them manually in your debug configuration. Now that the test runs, we can try to debug the server. 7. Define a remote debug configuration. Preferably is should be in listen mode: IntelliJ 2018.3.Beta1+ can automatically restart listening after a debug session is over, so you only have to start the remote debug configuration once. 8. Search for the server in arquillian.xml again and add the connection string from the remote debug configuration, e.g. ... .... -agentlib:jdwp=transport=dt_socket,server=n,address=localhost:5005 9. Set a breakpoint in the server and start the test debug configuration. Your remote debug session should stop at the breakpoint. HTH Dan [1]: https://github.com/infinispan/infinispan/blob/8fb4a6a9d168b0d4fb4d709f524585d8708242ac/server/integration/testsuite/pom.xml#L822 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/infinispan-dev/attachments/20181121/4d29341d/attachment-0001.html From galder at redhat.com Tue Nov 27 11:26:19 2018 From: galder at redhat.com (Galder Zamarreno) Date: Tue, 27 Nov 2018 17:26:19 +0100 Subject: [infinispan-dev] PSA: How to debug an integration test In-Reply-To: References: Message-ID: Thanks Dan!! On Wed, Nov 21, 2018 at 5:14 PM Dan Berindei wrote: > I had to debug some JMX stuff today and I remembered that Gustavo wanted a > guide for debugging ITs, so here goes: > > 1. Build the server > > mvn install -DskipTests -am -pl server/integration/testsuite > > 2. Unpack the server in the testsuite module > > mvn test -pl server/integration/testsuite > > 3. Try to run the IT from the IDE, it should fail because it can't find > the server definition > > 4. Check the @RunningServer references at the top of the IT and search for > them in arquillian.xml. E.g. JmxManagementIT uses "jmx-management-1", which > is defined under > > > > 5. Add -Darquillian.launch= to your debug configuration > > 6. Your test should run now. I got an error about env.JAVA_HOME not being > defined, I just added a JAVA_HOME environment variable in the debug > configuration and it worked. > > The Arquillian server configuration may need other system properties. > IntelliJ automatically picks up the system properties set in the failsafe > execution [1] when it imports the project, but you may have to set them > manually in your debug configuration. > > Now that the test runs, we can try to debug the server. > > 7. Define a remote debug configuration. Preferably is should be in listen > mode: IntelliJ 2018.3.Beta1+ can automatically restart listening after a > debug session is over, so you only have to start the remote debug > configuration once. > > 8. Search for the server in arquillian.xml again and add the connection > string from the remote debug configuration, e.g. > > > > ... > > .... > > -agentlib:jdwp=transport=dt_socket,server=n,address=localhost:5005 > > 9. Set a breakpoint in the server and start the test debug configuration. > Your remote debug session should stop at the breakpoint. > > HTH > Dan > > [1]: > https://github.com/infinispan/infinispan/blob/8fb4a6a9d168b0d4fb4d709f524585d8708242ac/server/integration/testsuite/pom.xml#L822 > _______________________________________________ > infinispan-dev mailing list > infinispan-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/infinispan-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/infinispan-dev/attachments/20181127/7e01bb3d/attachment.html From rory.odonnell at oracle.com Fri Nov 30 07:01:07 2018 From: rory.odonnell at oracle.com (Rory O'Donnell) Date: Fri, 30 Nov 2018 12:01:07 +0000 Subject: [infinispan-dev] JDK 12 build 22 is now available at : - jdk.java.net/12/ Message-ID: Hi Galder, *NOTE:- *The JDK 12 schedule rampdown phase 1 of the release is coming up in a few weeks on Dec. 13, 2018. ** *JDK 12 Early Access build 22 **is now available **at : - jdk.java.net/12/* * Release Note updates since last email * * o Build 21 - Deprecating the default keytool -keyalg value (JDK-8212003) o Build 21 - Change to X25519 and X448 encoded private key format (JDK-8213363) o Build 20 - New command-line flag for more extensive error reporting in crash logs? (JDK-8211845) o Build 20 -Initial Value of user.timezone System Property Changed (JDK-8185496) * JEPs proposed for JDK 12 : o JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector(Experimental) o JEP 334: JVM Constants API o JEP 344: Abortable Mixed Collections for G1 o JEP 346: Promptly Return Unused Committed Memory from G1 * JEPs targeted to JDK 12, so far o JEP 230: Microbenchmark Suite o JEP 325: Switch Expressions (Preview) o JEP 326: Raw String Literals (Preview) o JEP 340: One AArch64 Port, Not Two o JEP 341: Default CDS Archives Rgds,Rory -- Rgds,Rory O'Donnell Quality Engineering Manager Oracle EMEA , Dublin, Ireland -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/infinispan-dev/attachments/20181130/014b75f8/attachment.html