From alexey.ivanov at oracle.com Tue Jan 4 20:24:20 2022 From: alexey.ivanov at oracle.com (Aleksei Ivanov) Date: Tue, 4 Jan 2022 20:24:20 +0000 Subject: CFV: New JDK Committer: Artem Semenov In-Reply-To: References: Message-ID: <29099b49-12fc-6e38-84d4-5e90f3150f8c@oracle.com> Vote: yes On 27/12/2021 19:10, Anton Tarasov wrote: > I hereby nominate Artem Semenov (asemenov [1]) to JDK Committer -- Regards, Alexey From erik.joelsson at oracle.com Wed Jan 5 14:25:34 2022 From: erik.joelsson at oracle.com (erik.joelsson at oracle.com) Date: Wed, 5 Jan 2022 06:25:34 -0800 Subject: Recommended GCC version for JDK17+? In-Reply-To: References: Message-ID: <7cb2d803-c5b2-4ae9-5d80-6c994dda8ae2@oracle.com> Hello Stewart, The short answer is no, there is no official or definitive recommended compiler version for OpenJDK. The wiki page you linked as the closest thing we have, a page where different distributors of OpenJDK may list the versions they use and test with. Choosing the same or similar for your build is more likely to work well. Reading your email I was reminded that I had neglected to update that wiki with Oracle build platforms for a while, which I have now done. The sentence about 10.2 is intentionally vague, but you are right, it should have been updated to reference 10.3 when Oracle switched GCC version in JDK 17. It should also be noted that there is more to a compiler toolchain than just the version number of the compiler. If you use the GCC/binutils from a particular Linux distribution, it often comes with a set of patches on top of the official source distribution. The versions of system headers and libraries that you possibly statically link against (optional) may also affect the final product. In the end, only testing can verify that a particular build of OpenJDK works as well as it should. If you would like to emulate the toolchains Oracle uses exactly, the scripts we used to generate our "devkits" (portable toolchains) are available in make/devkit/ in the relevant repo. /Erik On 2021-12-22 06:21, Stewart Addison wrote: > Hi everyone, > > What is the definitive "recommended" version of GCC to use for building > JDK17 and later? > > The reason for asking is because the OpenJDK wiki seems to recommend the > (Red Hat vendor branch) GCC 8.2.1: > https://wiki.openjdk.java.net/display/Build/Supported+Build+Platforms > > The JDK17+ building.md, however, seems to reference 10.2 as the "known to > work" version: > https://github.com/openjdk/jdk17u/blob/master/doc/building.md#gcc (But also > states that anything at 5.0 and above /should/ also work) > > Looking at what some of the different openjdk providers use there seems to > be a mix of versions in use although 7.3.1 seems particularly popular - > possibly because 7.3 is listed in the devkits section of the document, or > because 7.3.0 is the one listed in the building.md for jdk11u and some > vendors have just stuck with it for now. Oracle's current JDK17 seems to > use a more recent version than other providers - 10.3 from what I can tell. > > While different versions obviously work, is there a formal "recommended" > version of GCC that should be used for compiling production versions of > JDK17 on Linux? My gut feel is that it should possibly be 10.2 or a later > 10 as the one listed as being known to work, but Oracle seems to have gone > one up from that too so perhaps 10.2 should be replaced with 10.3 in the > docs now ... And should the wiki be adjusted to be in sync with the level > mentioned in building.md And I guess one final question would be whether > anyone has done any comparisons with JDKs compiled with different versions > that might sway any decisions? > > Regards, > > Stewart... > -- > Working on Adoptium Temurin for Red Hat > > https://twitter.com/sxaTech > https://github.com/sxa From hi at stuartnelson.xyz Fri Jan 7 11:33:55 2022 From: hi at stuartnelson.xyz (stuart nelson) Date: Fri, 07 Jan 2022 11:33:55 +0000 Subject: [libattach] misleading error message when checking gid fails Message-ID: Hey, First, apologies if this should be directed to a different mailing list, I didn't find one that seemed correct in the mailing lists (https://mail.openjdk.java.net/mailman/listinfo). I was building up a syscall filters list for a java process for seccomp, when I encountered this error stack trace: (elided) Caused by: java.io.IOException: well-known file /proc/1974261/root/tmp/.java_pid1974261 is not secure: file's group should be the current group (which is -1) but the group is 1000 ??? at jdk.attach/sun.tools.attach.VirtualMachineImpl.checkPermissions(Native Method) ??? at jdk.attach/sun.tools.attach.VirtualMachineImpl.(VirtualMachineImpl.java:112) ??? at jdk.attach/sun.tools.attach.AttachProviderImpl.attachVirtualMachine(AttachProviderImpl.java:58) ??? at jdk.attach/com.sun.tools.attach.VirtualMachine.attach(VirtualMachine.java:207) ??? ... 6 more The error originates from this line: https://hg.openjdk.java.net/jdk/jdk/file/ee1d592a9f53/src/jdk.attach/linux/native/libattach/VirtualMachineImpl.c#l167 The value for gid is found on this line: https://hg.openjdk.java.net/jdk/jdk/file/ee1d592a9f53/src/jdk.attach/linux/native/libattach/VirtualMachineImpl.c#l150 The reason getegid() returns -1 is because it wasn't in my allowed syscalls list for seccomp, so EPERM (-1) was returned instead. My question is: -1 is an invalid gid. Should this be checked in the code, and a more helpful error message returned? It could definitely save future developers time. Stuart From Alan.Bateman at oracle.com Fri Jan 7 11:47:58 2022 From: Alan.Bateman at oracle.com (Alan Bateman) Date: Fri, 7 Jan 2022 11:47:58 +0000 Subject: [libattach] misleading error message when checking gid fails In-Reply-To: References: Message-ID: <27e54b99-fbe1-b151-5054-02b33584a040@oracle.com> On 07/01/2022 11:33, stuart nelson wrote: > Hey, > > First, apologies if this should be directed to a different mailing list, I didn't find one that seemed correct in the mailing lists (https://mail.openjdk.java.net/mailman/listinfo). > > I was building up a syscall filters list for a java process for seccomp, when I encountered this error stack trace: > > (elided) > Caused by: java.io.IOException: well-known file /proc/1974261/root/tmp/.java_pid1974261 is not secure: file's group should be the current group (which is -1) but the group is 1000 > ??? at jdk.attach/sun.tools.attach.VirtualMachineImpl.checkPermissions(Native Method) > ??? at jdk.attach/sun.tools.attach.VirtualMachineImpl.(VirtualMachineImpl.java:112) > ??? at jdk.attach/sun.tools.attach.AttachProviderImpl.attachVirtualMachine(AttachProviderImpl.java:58) > ??? at jdk.attach/com.sun.tools.attach.VirtualMachine.attach(VirtualMachine.java:207) > ??? ... 6 more > > The error originates from this line: > https://hg.openjdk.java.net/jdk/jdk/file/ee1d592a9f53/src/jdk.attach/linux/native/libattach/VirtualMachineImpl.c#l167 > > The value for gid is found on this line: > https://hg.openjdk.java.net/jdk/jdk/file/ee1d592a9f53/src/jdk.attach/linux/native/libattach/VirtualMachineImpl.c#l150 > > The reason getegid() returns -1 is because it wasn't in my allowed syscalls list for seccomp, so EPERM (-1) was returned instead. > > My question is: -1 is an invalid gid. Should this be checked in the code, and a more helpful error message returned? It could definitely save future developers time. > serviceability-dev is the mailing lists for the Attach API. In this case, the exception message is clear that the gid is -1 so it should help with debugging the issue. -Alan From fweimer at redhat.com Fri Jan 7 11:54:59 2022 From: fweimer at redhat.com (Florian Weimer) Date: Fri, 07 Jan 2022 12:54:59 +0100 Subject: [libattach] misleading error message when checking gid fails In-Reply-To: (stuart nelson's message of "Fri, 07 Jan 2022 11:33:55 +0000") References: Message-ID: <87sftz4v70.fsf@oldenburg.str.redhat.com> * stuart nelson: > The reason getegid() returns -1 is because it wasn't in my allowed > syscalls list for seccomp, so EPERM (-1) was returned instead. Surely that's a broken seccomp filter. Such fundamental system calls really cannot be filtered. Thanks, Florian From poonam.bajaj at oracle.com Thu Jan 13 02:56:32 2022 From: poonam.bajaj at oracle.com (Poonam Parhar) Date: Thu, 13 Jan 2022 02:56:32 +0000 Subject: CFV: New JDK Committer: Fairoz Matte Message-ID: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> I hereby nominate Fairoz Matte (fmatte) to JDK Committer. Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. Votes are due by the end of Feb 02, 2022. Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. For Lazy Consensus voting instructions, see [2]. regards, Poonam [1] https://openjdk.java.net/census#jdk [2] http://openjdk.java.net/projects/#committer-vote [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC From david.buck at oracle.com Thu Jan 13 02:58:36 2022 From: david.buck at oracle.com (David Buck) Date: Thu, 13 Jan 2022 02:58:36 +0000 Subject: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: vote: yes -Buck -----Original Message----- From: jdk-dev On Behalf Of Poonam Parhar Sent: Thursday, January 13, 2022 11:57 AM To: jdk-dev at openjdk.java.net Subject: CFV: New JDK Committer: Fairoz Matte I hereby nominate Fairoz Matte (fmatte) to JDK Committer. Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. Votes are due by the end of Feb 02, 2022. Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. For Lazy Consensus voting instructions, see [2]. regards, Poonam [1] https://openjdk.java.net/census#jdk [2] http://openjdk.java.net/projects/#committer-vote [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC From vladimir.kozlov at oracle.com Thu Jan 13 03:48:51 2022 From: vladimir.kozlov at oracle.com (Vladimir Kozlov) Date: Wed, 12 Jan 2022 19:48:51 -0800 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: <83ed4c41-458a-3ae0-c319-383b36bf830a@oracle.com> Vote: yes Thanks, Vladimir K On 1/12/22 6:56 PM, Poonam Parhar wrote: > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > From jayathirth.d.v at oracle.com Thu Jan 13 04:56:34 2022 From: jayathirth.d.v at oracle.com (Jayathirth D V) Date: Thu, 13 Jan 2022 04:56:34 +0000 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: <851F417A-E409-4C77-B0F6-D088C3459718@oracle.com> Vote : Yes Thanks, Jay > On 13-Jan-2022, at 8:26 AM, Poonam Parhar wrote: > > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > From kim.barrett at oracle.com Thu Jan 13 05:39:00 2022 From: kim.barrett at oracle.com (Kim Barrett) Date: Thu, 13 Jan 2022 05:39:00 +0000 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: <6D118C17-BC0B-40A0-9B9B-0954A8EC41AC@oracle.com> vote: yes > On Jan 12, 2022, at 9:56 PM, Poonam Parhar wrote: > > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > From prasanta.sadhukhan at oracle.com Thu Jan 13 05:40:38 2022 From: prasanta.sadhukhan at oracle.com (Prasanta Sadhukhan) Date: Thu, 13 Jan 2022 11:10:38 +0530 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: <89e30272-dcb1-fef8-ed3c-184e0516107d@oracle.com> Vote: yes On 13-Jan-22 8:26 AM, Poonam Parhar wrote: > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > From christoph.langer at sap.com Thu Jan 13 06:27:03 2022 From: christoph.langer at sap.com (Langer, Christoph) Date: Thu, 13 Jan 2022 06:27:03 +0000 Subject: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: Vote:yes /Christoph > -----Original Message----- > From: jdk-dev On Behalf Of Poonam > Parhar > Sent: Donnerstag, 13. Januar 2022 03:57 > To: jdk-dev at openjdk.java.net > Subject: CFV: New JDK Committer: Fairoz Matte > > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the > JVM Sustaining group at Oracle. He has made several non-trivial contributions > to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. > Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] > https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND% > 20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20A > ND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%2 > 0AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017 > %2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > From tobias.hartmann at oracle.com Thu Jan 13 07:11:56 2022 From: tobias.hartmann at oracle.com (Tobias Hartmann) Date: Thu, 13 Jan 2022 08:11:56 +0100 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: <91a14be4-c42f-f953-b6ad-100cb33fe11e@oracle.com> Vote: yes Best regards, Tobias On 13.01.22 03:56, Poonam Parhar wrote: > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > From yan at azul.com Thu Jan 13 07:30:52 2022 From: yan at azul.com (Yuri Nesterenko) Date: Thu, 13 Jan 2022 10:30:52 +0300 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: Vote: yes --yan On 13.01.2022 05:56, Poonam Parhar wrote: > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > From abdul.kolarkunnu at oracle.com Thu Jan 13 07:56:52 2022 From: abdul.kolarkunnu at oracle.com (Muneer Kolarkunnu) Date: Thu, 13 Jan 2022 07:56:52 +0000 Subject: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: Vote: yes -Muneer ________________________________ From: jdk-dev on behalf of Poonam Parhar Sent: Thursday, January 13, 2022 8:26 AM To: jdk-dev at openjdk.java.net Subject: CFV: New JDK Committer: Fairoz Matte I hereby nominate Fairoz Matte (fmatte) to JDK Committer. Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. Votes are due by the end of Feb 02, 2022. Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. For Lazy Consensus voting instructions, see [2]. regards, Poonam [1] https://openjdk.java.net/census#jdk [2] http://openjdk.java.net/projects/#committer-vote [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC From goetz.lindenmaier at sap.com Thu Jan 13 08:30:49 2022 From: goetz.lindenmaier at sap.com (Lindenmaier, Goetz) Date: Thu, 13 Jan 2022 08:30:49 +0000 Subject: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: Vote: yes Best regards, Goetz. > -----Original Message----- > From: jdk-dev On Behalf Of Poonam > Parhar > Sent: Thursday, January 13, 2022 3:57 AM > To: jdk-dev at openjdk.java.net > Subject: CFV: New JDK Committer: Fairoz Matte > > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the > JVM Sustaining group at Oracle. He has made several non-trivial contributions > to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. > Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] > https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND% > 20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20A > ND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%2 > 0AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017 > %2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > From stefan.karlsson at oracle.com Thu Jan 13 08:52:44 2022 From: stefan.karlsson at oracle.com (Stefan Karlsson) Date: Thu, 13 Jan 2022 09:52:44 +0100 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: <997ffae2-6efb-bb1e-f3ac-8508dc325f95@oracle.com> Vote: yes StefanK On 2022-01-13 03:56, Poonam Parhar wrote: > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > From thomas.schatzl at oracle.com Thu Jan 13 09:03:17 2022 From: thomas.schatzl at oracle.com (Thomas Schatzl) Date: Thu, 13 Jan 2022 10:03:17 +0100 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: <1409492f-4dc2-11df-f5ed-0a38358e1a99@oracle.com> Vote: yes On 13.01.22 03:56, Poonam Parhar wrote: > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > From sean.coffey at oracle.com Thu Jan 13 09:29:37 2022 From: sean.coffey at oracle.com (=?UTF-8?Q?Se=c3=a1n_Coffey?=) Date: Thu, 13 Jan 2022 09:29:37 +0000 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: Vote:yes regards, Sean. On 13/01/2022 02:56, Poonam Parhar wrote: > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > From kevin.walls at oracle.com Thu Jan 13 09:34:18 2022 From: kevin.walls at oracle.com (Kevin Walls) Date: Thu, 13 Jan 2022 09:34:18 +0000 Subject: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: Vote: yes -----Original Message----- From: jdk-dev On Behalf Of Poonam Parhar Sent: 13 January 2022 02:57 To: jdk-dev at openjdk.java.net Subject: CFV: New JDK Committer: Fairoz Matte I hereby nominate Fairoz Matte (fmatte) to JDK Committer. Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. Votes are due by the end of Feb 02, 2022. Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. For Lazy Consensus voting instructions, see [2]. regards, Poonam [1] https://openjdk.java.net/census#jdk [2] http://openjdk.java.net/projects/#committer-vote [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC From sgehwolf at redhat.com Thu Jan 13 09:49:55 2022 From: sgehwolf at redhat.com (Severin Gehwolf) Date: Thu, 13 Jan 2022 10:49:55 +0100 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: Vote: yes On Thu, 2022-01-13 at 02:56 +0000, Poonam Parhar wrote: > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member > of the JVM Sustaining group at Oracle. He has made several non- > trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this > nomination. Votes must be cast in the open by replying to this > mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] > https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > From adinn at redhat.com Thu Jan 13 10:00:35 2022 From: adinn at redhat.com (Andrew Dinn) Date: Thu, 13 Jan 2022 10:00:35 +0000 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: Vote: yes On 13/01/2022 02:56, Poonam Parhar wrote: > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > -- regards, Andrew Dinn ----------- Red Hat Distinguished Engineer Red Hat UK Ltd Registered in England and Wales under Company Registration No. 03798903 Directors: Michael Cunningham, Michael ("Mike") O'Neill From stefan.johansson at oracle.com Thu Jan 13 10:35:40 2022 From: stefan.johansson at oracle.com (Stefan Johansson) Date: Thu, 13 Jan 2022 11:35:40 +0100 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: <6b1c3c1d-79d6-32ac-ec14-7ddcacd15679@oracle.com> Vote: yes On 2022-01-13 03:56, Poonam Parhar wrote: > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > From harold.seigel at oracle.com Thu Jan 13 13:06:49 2022 From: harold.seigel at oracle.com (Harold Seigel) Date: Thu, 13 Jan 2022 08:06:49 -0500 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: <9edfd356-f112-99f3-66a6-3fe5120ac9df@oracle.com> Vote: Yes Harold On 1/12/2022 9:56 PM, Poonam Parhar wrote: > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > From chegar999 at gmail.com Thu Jan 13 13:27:46 2022 From: chegar999 at gmail.com (Chris Hegarty) Date: Thu, 13 Jan 2022 13:27:46 +0000 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <9edfd356-f112-99f3-66a6-3fe5120ac9df@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> <9edfd356-f112-99f3-66a6-3fe5120ac9df@oracle.com> Message-ID: > On 1/12/2022 9:56 PM, Poonam Parhar wrote: >> I hereby nominate Fairoz Matte (fmatte) to JDK Committer. Vote: Yes -Chris. From martin.doerr at sap.com Thu Jan 13 13:29:58 2022 From: martin.doerr at sap.com (Doerr, Martin) Date: Thu, 13 Jan 2022 13:29:58 +0000 Subject: AW: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: Vote: yes /Martin Von: jdk-dev im Auftrag von Poonam Parhar Datum: Donnerstag, 13. Januar 2022 um 03:57 An: jdk-dev at openjdk.java.net Betreff: CFV: New JDK Committer: Fairoz Matte I hereby nominate Fairoz Matte (fmatte) to JDK Committer. Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. Votes are due by the end of Feb 02, 2022. Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. For Lazy Consensus voting instructions, see [2]. regards, Poonam [1] https://openjdk.java.net/census#jdk [2] http://openjdk.java.net/projects/#committer-vote [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC From jai.forums2013 at gmail.com Thu Jan 13 13:31:50 2022 From: jai.forums2013 at gmail.com (Jaikiran Pai) Date: Thu, 13 Jan 2022 19:01:50 +0530 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> <9edfd356-f112-99f3-66a6-3fe5120ac9df@oracle.com> Message-ID: <34b70a87-62ee-870b-6c0c-b107e54c7ae6@gmail.com> Vote: yes -Jaikiran On 13/01/22 6:57 pm, Chris Hegarty wrote: > > >> On 1/12/2022 9:56 PM, Poonam Parhar wrote: >>> I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > > Vote: Yes > > -Chris. From coleen.phillimore at oracle.com Thu Jan 13 14:12:51 2022 From: coleen.phillimore at oracle.com (coleen.phillimore at oracle.com) Date: Thu, 13 Jan 2022 09:12:51 -0500 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: <9f1389ca-7c5c-6d6c-59b8-37abcc2c0a20@oracle.com> Vote: yes On 1/12/22 9:56 PM, Poonam Parhar wrote: > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > From lois.foltan at oracle.com Thu Jan 13 14:30:20 2022 From: lois.foltan at oracle.com (Lois Foltan) Date: Thu, 13 Jan 2022 09:30:20 -0500 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: <9221839d-c936-f400-d8d8-b2d9b7608532@oracle.com> Vote: yes Lois On 1/12/2022 9:56 PM, Poonam Parhar wrote: > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > From ajit.ghaisas at oracle.com Thu Jan 13 14:35:53 2022 From: ajit.ghaisas at oracle.com (Ajit Ghaisas) Date: Thu, 13 Jan 2022 14:35:53 +0000 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: <227E67AE-6917-4BD7-BCE0-B85863DBD7A7@oracle.com> Vote : YES Regards, Ajit On 13-Jan-2022, at 8:26 AM, Poonam Parhar > wrote: From eric.caspole at oracle.com Thu Jan 13 14:55:31 2022 From: eric.caspole at oracle.com (eric.caspole at oracle.com) Date: Thu, 13 Jan 2022 09:55:31 -0500 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: Vote: yes Eric On 1/12/22 9:56 PM, Poonam Parhar wrote: > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > From daniel.daugherty at oracle.com Thu Jan 13 15:00:15 2022 From: daniel.daugherty at oracle.com (daniel.daugherty at oracle.com) Date: Thu, 13 Jan 2022 10:00:15 -0500 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: <9bd54970-1ba6-792c-ec7e-6935fcdc2f13@oracle.com> Vote: yes Dan On 1/12/22 9:56 PM, Poonam Parhar wrote: > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > From dmitry.markov at oracle.com Thu Jan 13 16:30:08 2022 From: dmitry.markov at oracle.com (Dmitrii Markov) Date: Thu, 13 Jan 2022 16:30:08 +0000 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: <646DB27D-67D6-4726-926F-FC2C8165A35B@oracle.com> Vote: yes Regards, Dmitry > On 13 Jan 2022, at 02:56, Poonam Parhar wrote: > > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > From vladimir.x.ivanov at oracle.com Thu Jan 13 16:38:31 2022 From: vladimir.x.ivanov at oracle.com (Vladimir Ivanov) Date: Thu, 13 Jan 2022 19:38:31 +0300 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: Vote: yes Best regards, Vladimir Ivanov On 13.01.2022 05:56, Poonam Parhar wrote: > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. From mikhailo.seledtsov at oracle.com Thu Jan 13 16:43:44 2022 From: mikhailo.seledtsov at oracle.com (Mikhailo Seledtsov) Date: Thu, 13 Jan 2022 16:43:44 +0000 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: <6A0F8E63-A455-445B-A266-F722CF4762A8@oracle.com> Vote : YES > On Jan 12, 2022, at 6:56 PM, Poonam Parhar wrote: > > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > From calvin.cheung at oracle.com Thu Jan 13 17:18:43 2022 From: calvin.cheung at oracle.com (calvin.cheung at oracle.com) Date: Thu, 13 Jan 2022 09:18:43 -0800 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: Vote: yes On 1/12/22 6:56 PM, Poonam Parhar wrote: > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > From jesper.wilhelmsson at oracle.com Thu Jan 13 17:19:27 2022 From: jesper.wilhelmsson at oracle.com (Jesper Wilhelmsson) Date: Thu, 13 Jan 2022 17:19:27 +0000 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: Vote: Yes /Jesper > On 13 Jan 2022, at 03:56, Poonam Parhar wrote: > > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > From kusrinivasan at vmware.com Thu Jan 13 18:59:50 2022 From: kusrinivasan at vmware.com (Kumar Srinivasan) Date: Thu, 13 Jan 2022 18:59:50 +0000 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: <2C782AB2-7829-4521-8900-7C9776ED117E@vmware.com> Vote: Yes > On Jan 12, 2022, at 6:56 PM, Poonam Parhar wrote: > > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fopenjdk.java.net%2Fcensus%23jdk&data=04%7C01%7Ckusrinivasan%40vmware.com%7Cec7d650eb0b942c70e3508d9d6407213%7Cb39138ca3cee4b4aa4d6cd83d9dd62f0%7C0%7C1%7C637776394553220842%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=ocK10CIvU3UTCYIoJ5vEiVctVkxOk%2Fe8bHgvPSme3EQ%3D&reserved=0 > [2] https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Fopenjdk.java.net%2Fprojects%2F%23committer-vote&data=04%7C01%7Ckusrinivasan%40vmware.com%7Cec7d650eb0b942c70e3508d9d6407213%7Cb39138ca3cee4b4aa4d6cd83d9dd62f0%7C0%7C1%7C637776394553220842%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=i18aacqOmujQabgfmhZ55h9fUaOipG9pzMq1TbdCJ8I%3D&reserved=0 > [3] https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fbugs.openjdk.java.net%2Fissues%2F%3Fjql%3DProject%2520in%2520&data=04%7C01%7Ckusrinivasan%40vmware.com%7Cec7d650eb0b942c70e3508d9d6407213%7Cb39138ca3cee4b4aa4d6cd83d9dd62f0%7C0%7C1%7C637776394553220842%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=khbO%2FYGKwseHjvSt51twRy%2FXjGhffQWLZsHWVTthsLo%3D&reserved=0(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > From mikael.vidstedt at oracle.com Fri Jan 14 00:07:37 2022 From: mikael.vidstedt at oracle.com (Mikael Vidstedt) Date: Fri, 14 Jan 2022 00:07:37 +0000 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: <61261B28-5051-4A58-BB3B-19A39C05E79C@oracle.com> Vote: yes Cheers, Mikael > On Jan 12, 2022, at 6:56 PM, Poonam Parhar wrote: > > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > From david.holmes at oracle.com Fri Jan 14 06:05:31 2022 From: david.holmes at oracle.com (David Holmes) Date: Fri, 14 Jan 2022 16:05:31 +1000 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: <898383c4-e6c2-9d6b-6522-f80d9bd2cc54@oracle.com> Vote: yes David On 13/01/2022 12:56 pm, Poonam Parhar wrote: > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > From per.liden at oracle.com Fri Jan 14 09:23:49 2022 From: per.liden at oracle.com (Per Liden) Date: Fri, 14 Jan 2022 10:23:49 +0100 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: <4f039111-307e-a4e4-f7e1-e3926b507236@oracle.com> Vote: yes /Per On 1/13/22 03:56, Poonam Parhar wrote: > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > From neugens.limasoftware at gmail.com Fri Jan 14 10:14:45 2022 From: neugens.limasoftware at gmail.com (Mario Torre) Date: Fri, 14 Jan 2022 11:14:45 +0100 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: <9DD933C2-CEB2-4985-BE1F-D39B29C38562@gmail.com> Vote: Yes, Cheers, Mario > On 13. Jan 2022, at 03:56, Poonam Parhar wrote: > > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > ? Mario Torre Java Champion and OpenJDK contributor PGP Key: 0BAB254E Fingerprint: AB1C 7C6F 7181 895F E581 93A9 C6B8 A242 0BAB 254E Twitter: @neugens Web: https://www.mario-torre.eu/ Music: https://mario-torre.bandcamp.com/ From christian.hagedorn at oracle.com Fri Jan 14 12:50:20 2022 From: christian.hagedorn at oracle.com (Christian Hagedorn) Date: Fri, 14 Jan 2022 13:50:20 +0100 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: Vote: yes Best regards, Christian On 13.01.22 03:56, Poonam Parhar wrote: > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > From gerard.ziemski at oracle.com Fri Jan 14 15:20:34 2022 From: gerard.ziemski at oracle.com (Gerard Ziemski) Date: Fri, 14 Jan 2022 15:20:34 +0000 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: <04B7E0C9-8180-4076-BECE-6983A275080D@oracle.com> Vote: yes cheers From anton.tarasov at jetbrains.com Mon Jan 17 08:51:10 2022 From: anton.tarasov at jetbrains.com (Anton Tarasov) Date: Mon, 17 Jan 2022 11:51:10 +0300 Subject: Result: New JDK Committer: Artem Semenov Message-ID: Voting for Artem Semenov [1] is now closed: Yes: 6 Veto: 0 Abstain: 0 According to the Bylaws definition of Lazy Consensus [2], this is sufficient to approve the nomination. With regards, Anton. [1] https://mail.openjdk.java.net/pipermail/jdk-dev/2021-December/006303.html [2] http://openjdk.java.net/bylaws#lazy-consensus From leo.korinth at oracle.com Mon Jan 17 11:53:18 2022 From: leo.korinth at oracle.com (Leo Korinth) Date: Mon, 17 Jan 2022 12:53:18 +0100 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: <7253f029-85c0-09ea-4b68-4808d2fa9bf4@oracle.com> Vote: yes /Leo On 13/01/2022 03:56, Poonam Parhar wrote: > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > From vkempik at azul.com Mon Jan 17 11:59:44 2022 From: vkempik at azul.com (Vladimir Kempik) Date: Mon, 17 Jan 2022 11:59:44 +0000 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <7253f029-85c0-09ea-4b68-4808d2fa9bf4@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> <7253f029-85c0-09ea-4b68-4808d2fa9bf4@oracle.com> Message-ID: Vote: Yes Leo Korinth 17 ?????? 2022 ?. 14:54:06 ???????: Vote: yes /Leo On 13/01/2022 03:56, Poonam Parhar wrote: I hereby nominate Fairoz Matte (fmatte) to JDK Committer. Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. Votes are due by the end of Feb 02, 2022. Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. For Lazy Consensus voting instructions, see [2]. regards, Poonam [1] https://openjdk.java.net/census#jdk [2] http://openjdk.java.net/projects/#committer-vote [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC From erik.gahlin at oracle.com Mon Jan 17 15:31:12 2022 From: erik.gahlin at oracle.com (Erik Gahlin) Date: Mon, 17 Jan 2022 15:31:12 +0000 Subject: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: Vote: Yes Erik ________________________________ From: jdk-dev on behalf of Poonam Parhar Sent: Thursday, January 13, 2022 3:56 AM To: jdk-dev at openjdk.java.net Subject: CFV: New JDK Committer: Fairoz Matte I hereby nominate Fairoz Matte (fmatte) to JDK Committer. Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. Votes are due by the end of Feb 02, 2022. Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. For Lazy Consensus voting instructions, see [2]. regards, Poonam [1] https://openjdk.java.net/census#jdk [2] http://openjdk.java.net/projects/#committer-vote [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC From lutz.schmidt at sap.com Mon Jan 17 21:57:34 2022 From: lutz.schmidt at sap.com (Schmidt, Lutz) Date: Mon, 17 Jan 2022 21:57:34 +0000 Subject: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: <684EA830-2151-4583-8265-6803E796A53D@sap.com> Vote: yes. Regards, Lutz ?On 13.01.22, 03:57, "jdk-dev on behalf of Poonam Parhar" wrote: I hereby nominate Fairoz Matte (fmatte) to JDK Committer. Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. Votes are due by the end of Feb 02, 2022. Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. For Lazy Consensus voting instructions, see [2]. regards, Poonam [1] https://openjdk.java.net/census#jdk [2] http://openjdk.java.net/projects/#committer-vote [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC From alexey.ivanov at oracle.com Tue Jan 18 12:06:51 2022 From: alexey.ivanov at oracle.com (Aleksei Ivanov) Date: Tue, 18 Jan 2022 12:06:51 +0000 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: <23ed4772-3115-5463-3446-d9bf0bf236ba@oracle.com> Vote: yes On 13/01/2022 02:56, Poonam Parhar wrote: > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. -- Regards, Alexey From volker.simonis at gmail.com Tue Jan 18 12:47:51 2022 From: volker.simonis at gmail.com (Volker Simonis) Date: Tue, 18 Jan 2022 13:47:51 +0100 Subject: CFV: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: Vote: yes On Thu, Jan 13, 2022 at 3:57 AM Poonam Parhar wrote: > > I hereby nominate Fairoz Matte (fmatte) to JDK Committer. > > Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. > > Votes are due by the end of Feb 02, 2022. > > Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. > > For Lazy Consensus voting instructions, see [2]. > > regards, > Poonam > > [1] https://openjdk.java.net/census#jdk > [2] http://openjdk.java.net/projects/#committer-vote > [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC > > From jamsheed.c.m at oracle.com Tue Jan 18 13:04:28 2022 From: jamsheed.c.m at oracle.com (Jamsheed C M) Date: Tue, 18 Jan 2022 13:04:28 +0000 Subject: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: Yes Regards, Jamsheed ________________________________ From: jdk-dev on behalf of Poonam Parhar Sent: Thursday, January 13, 2022 8:26 AM To: jdk-dev at openjdk.java.net Subject: CFV: New JDK Committer: Fairoz Matte I hereby nominate Fairoz Matte (fmatte) to JDK Committer. Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. Votes are due by the end of Feb 02, 2022. Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. For Lazy Consensus voting instructions, see [2]. regards, Poonam [1] https://openjdk.java.net/census#jdk [2] http://openjdk.java.net/projects/#committer-vote [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC From mark.reinhold at oracle.com Thu Jan 20 17:23:00 2022 From: mark.reinhold at oracle.com (mark.reinhold at oracle.com) Date: Thu, 20 Jan 2022 09:23:00 -0800 (PST) Subject: JDK 18 is now in Rampdown Phase Two Message-ID: <20220120172300.839384D0596@eggemoggin.niobe.net> Per the JDK 18 schedule [1], we are now in Rampdown Phase Two. The overall feature set is frozen. No further JEPs will be targeted to this release. Per the JDK Release Process [2] we now turn our focus to P1 and P2 bugs, which can be fixed with approval [3]. Late enhancements are still possible, with approval [4], but the bar is now extraordinarily high. If you?re responsible for any of the bugs on the RDP 2 candidate-bug list [5] then please see JEP 3 for guidance on how to handle them. - Mark [1] https://openjdk.java.net/projects/jdk/18/#Schedule [2] https://openjdk.java.net/jeps/3 [3] https://openjdk.java.net/jeps/3#Fix-Request-Process [4] https://openjdk.java.net/jeps/3#Late-Enhancement-Request-Process [5] https://j.mp/jdk-rdp-2 From jonathan.gibbons at oracle.com Mon Jan 24 15:56:13 2022 From: jonathan.gibbons at oracle.com (Jonathan Gibbons) Date: Mon, 24 Jan 2022 07:56:13 -0800 Subject: jtreg and JDK versions Message-ID: TL;DR: jtreg will soon stop supporting very old versions of JDK As described in [JEP 182], as of JDK 9, javac no longer supports compiling for JDK versions before JDK 8. And separately, to reduce support overhead, jtreg has always focussed on a single line of development with the intent of being able to support multiple versions of JDK development, including very old versions. As a result, since JDK 9, jtreg has been constrained to be compilable with JDK 8, so that we can compile some parts of the code to run on older versions, and this has effectively meant that all of jtreg has been constrained to only use API and language features available in JDK 8. This restriction has also extended to the libraries that we compile and use, such as the CodeTools AsmTools library. Over time, the technology to manage different versions of jtreg has improved, and given the recent changes to the TestNG library that is bundled with jtreg, the costs of supporting a single version of jtreg are beginning to outweigh the benefits. Therefore, it is proposed that the current line of development will be released as jtreg version 6.2, and that this will be the last version to support running tests on very old versions of JDK. Going forward, future versions of jtreg will be numbered 7 and up, and will require the use of a more recent version of JDK to build and run jtreg, such as JDK 11 or JDK 17. Note that it will still be possible to run tests on recent earlier versions on JDK, as far back as is supported by the JDK used to build jtreg. This is currently JDK 8. Overall, this change will allow us to modernize the jtreg code base, and the libraries on which it depends. [JEP 182]: https://openjdk.java.net/jeps/182 From anton.litvinov at oracle.com Tue Jan 25 14:20:38 2022 From: anton.litvinov at oracle.com (Anton Litvinov) Date: Tue, 25 Jan 2022 14:20:38 +0000 Subject: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: Vote: yes Thank you, Anton ________________________________________ From: jdk-dev on behalf of Poonam Parhar Sent: 13 January 2022 02:56 To: jdk-dev at openjdk.java.net Subject: CFV: New JDK Committer: Fairoz Matte I hereby nominate Fairoz Matte (fmatte) to JDK Committer. Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. Votes are due by the end of Feb 02, 2022. Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. For Lazy Consensus voting instructions, see [2]. regards, Poonam [1] https://openjdk.java.net/census#jdk [2] http://openjdk.java.net/projects/#committer-vote [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC From goetz.lindenmaier at sap.com Thu Jan 27 11:24:26 2022 From: goetz.lindenmaier at sap.com (Lindenmaier, Goetz) Date: Thu, 27 Jan 2022 11:24:26 +0000 Subject: Asking advice on Copyright lines Message-ID: Hi Is there any documentation giving advice on how non-Oracle Contributors should handle Copyright lines in OpenJDK files? Discussion arose on this PR: https://github.com/openjdk/jdk/pull/6885 All I found is http://cr.openjdk.java.net/~alundblad/styleguide/index-v6.html which mentions you, Iris. Some obvious questions, given contributors of Parties A and B, both non Oracle. 1. If there is an Oracle copyright in the file, should Contributor of A update the year in the Oracle line? 1. If there is no Oracle copyright in the file, and the existing copyright is of party B, what should contributor of party A do? * Add his own Copyright * Add the Oracle copyright. If so, which starting date should he choose? * Update the copyright of party B. 1. If contributor of A contributes a new file, which Copyright should he add? What if the code in the new file is derived from existing files? What starting year should he use? 1. How to handle Copyrights in backports? Obviously, I have answers to some of these question because I have been in the situation. But some documentation how to handle this would be nice. Best regards, Goetz. From archana.nogriya at uk.ibm.com Fri Jan 28 15:05:47 2022 From: archana.nogriya at uk.ibm.com (Archana Nogriya) Date: Fri, 28 Jan 2022 16:05:47 +0100 Subject: Copyright Issue founds : JDK18 - GPLv2 is present but Classpath exception is missing In-Reply-To: References: Message-ID: JDK18 copyrights issues has been found, Please appreciate your help to fix them. GPLv2 is present but Classpath exception is missing in these files, src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/CellAccessibility.h src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/CellAccessibility.m src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/ColumnAccessibility.h src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/ColumnAccessibility.m src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/ComboBoxAccessibility.h src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/ComboBoxAccessibility.m src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/ComponentWrapperAccessibility.h src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/ComponentWrapperAccessibility.m src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/ListAccessibility.h src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/ListAccessibility.m src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/ListRowAccessibility.h src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/ListRowAccessibility.m src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/NavigableTextAccessibility.h src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/NavigableTextAccessibility.m src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/OutlineAccessibility.h src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/OutlineAccessibility.m src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/OutlineRowAccessibility.h src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/OutlineRowAccessibility.m src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/TabButtonAccessibility.h src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/TabButtonAccessibility.m: src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/TabGroupAccessibility.h src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/TabGroupAccessibility.m src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/TableAccessibility.h src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/TableAccessibility.m src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/TableRowAccessibility.h src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/TableRowAccessibility.m src/jdk.httpserver/share/classes/com/sun/net/httpserver/SimpleFileServer.java: src/jdk.httpserver/share/classes/sun/net/httpserver/simpleserver/FileServerHandler.java src/jdk.httpserver/share/classes/sun/net/httpserver/simpleserver/JWebServer.java src/jdk.httpserver/share/classes/sun/net/httpserver/simpleserver/Main.java src/jdk.httpserver/share/classes/sun/net/httpserver/simpleserver/OutputFilter.java src/jdk.httpserver/share/classes/sun/net/httpserver/simpleserver/ResourceBundleHelper.java src/jdk.httpserver/share/classes/sun/net/httpserver/simpleserver/SimpleFileServerImpl.java src/jdk.incubator.vector/linux/native/libjsvml/globals_vectorApiSupport_linux.S.inc src/jdk.incubator.vector/windows/native/libjsvml/globals_vectorApiSupport_windows.S.inc Many Thanks & Regards Archana Nogriya Java Runtimes Development and Project Manager IBM Hursley IBM United Kingdom Ltd internet email: archana.nogriya at uk.ibm.com Working hrs (Mon-Fri)- 9am - 3pm From: Archana Nogriya/UK/IBM To: jdk-updates-dev-request at openjdk.java.net Date: 28/01/2022 14:53 Subject: Copyright Issue founds : JDK18 and JDK17 - GPLv2 is present but Classpath exception is missing Hi, We have found the copyright issues in JDK17 and JDK18. These following files has GPLv2 present but Classpath exception is missing. Please if this can be fixed. src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/CellAccessibility.h src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/CellAccessibility.m src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/ColumnAccessibility.h src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/ColumnAccessibility.m src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/ComboBoxAccessibility.h src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/ComboBoxAccessibility.m src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/ComponentWrapperAccessibility.h src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/ComponentWrapperAccessibility.m src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/ListAccessibility.h src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/ListAccessibility.m src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/ListRowAccessibility.h src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/ListRowAccessibility.m src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/NavigableTextAccessibility.h src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/NavigableTextAccessibility.m src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/OutlineAccessibility.h src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/OutlineAccessibility.m src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/OutlineRowAccessibility.h src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/OutlineRowAccessibility.m src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/TabButtonAccessibility.h src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/TabButtonAccessibility.m: src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/TabGroupAccessibility.h src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/TabGroupAccessibility.m src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/TableAccessibility.h src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/TableAccessibility.m src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/TableRowAccessibility.h src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/TableRowAccessibility.m src/jdk.incubator.vector/linux/native/libjsvml/globals_vectorApiSupport_linux.S.inc src/jdk.incubator.vector/windows/native/libjsvml/globals_vectorApiSupport_windows.S.inc Many Thanks & Regards Archana Nogriya Java Runtimes Development and Project Manager IBM Hursley IBM United Kingdom Ltd internet email: archana.nogriya at uk.ibm.com Working hrs (Mon-Fri)- 9am - 3pm From: jdk-updates-dev-request at openjdk.java.net To: archana.nogriya at uk.ibm.com Date: 28/01/2022 14:27 Subject: [EXTERNAL] confirm 48c9a07e30aedc68095ef012f2f67c8a54fe817d Sent by: "jdk-updates-dev" Mailing list subscription confirmation notice for mailing list jdk-updates-dev We have received a request from for subscription of your email address, "archana.nogriya at uk.ibm.com", to the jdk-updates-dev at openjdk.java.net mailing list. To confirm that you want to be added to this mailing list, simply reply to this message, keeping the Subject: header intact. Or visit this web page: https://mail.openjdk.java.net/mailman/confirm/jdk-updates-dev/48c9a07e30aedc68095ef012f2f67c8a54fe817d Or include the following line -- and only the following line -- in a message to jdk-updates-dev-request at openjdk.java.net: confirm 48c9a07e30aedc68095ef012f2f67c8a54fe817d Note that simply sending a `reply' to this message should work from most mail readers, since that usually leaves the Subject: line in the right form (additional "Re:" text in the Subject: is okay). If you do not wish to be subscribed to this list, please simply disregard this message. If you think you are being maliciously subscribed to the list, or have any other questions, send them to jdk-updates-dev-owner at openjdk.java.net. Unless stated otherwise above: IBM United Kingdom Limited - Registered in England and Wales with number 741598. Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU Unless stated otherwise above: IBM United Kingdom Limited - Registered in England and Wales with number 741598. Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU From julia.boes at oracle.com Fri Jan 28 15:38:19 2022 From: julia.boes at oracle.com (Julia Boes) Date: Fri, 28 Jan 2022 15:38:19 +0000 Subject: Copyright Issue founds : JDK18 - GPLv2 is present but Classpath exception is missing In-Reply-To: References: Message-ID: Hi, > src/jdk.httpserver/share/classes/com/sun/net/httpserver/SimpleFileServer.java > src/jdk.httpserver/share/classes/sun/net/httpserver/simpleserver/FileServerHandler.java > src/jdk.httpserver/share/classes/sun/net/httpserver/simpleserver/JWebServer.java > src/jdk.httpserver/share/classes/sun/net/httpserver/simpleserver/Main.java > src/jdk.httpserver/share/classes/sun/net/httpserver/simpleserver/OutputFilter.java > src/jdk.httpserver/share/classes/sun/net/httpserver/simpleserver/ResourceBundleHelper.java > src/jdk.httpserver/share/classes/sun/net/httpserver/simpleserver/SimpleFileServerImpl.java the affected files in jdk.httpserver are fixed, see https://bugs.openjdk.java.net/browse/JDK-8280441 Regards, Julia From serguei.spitsyn at oracle.com Mon Jan 31 18:21:50 2022 From: serguei.spitsyn at oracle.com (Serguei Spitsyn) Date: Mon, 31 Jan 2022 18:21:50 +0000 Subject: New JDK Committer: Fairoz Matte In-Reply-To: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> References: <48AB8E54-35CF-416B-9C83-E90014270C70@oracle.com> Message-ID: <375A4184-8A04-4825-994E-A2C77D40A2C4@oracle.com> Vote: yes ?On 1/12/22, 6:56 PM, "jdk-dev on behalf of Poonam Parhar" wrote: I hereby nominate Fairoz Matte (fmatte) to JDK Committer. Fairoz is currently a JDK 8 Updates Project Author, and is a member of the JVM Sustaining group at Oracle. He has made several non-trivial contributions to the JDK project [3]. Votes are due by the end of Feb 02, 2022. Only current JDK Committers [1] are eligible to vote on this nomination. Votes must be cast in the open by replying to this mailing list. For Lazy Consensus voting instructions, see [2]. regards, Poonam [1] https://openjdk.java.net/census#jdk [2] http://openjdk.java.net/projects/#committer-vote [3] https://bugs.openjdk.java.net/issues/?jql=Project%20in%20(JDK)%20AND%20assignee%20%3D%20fmatte%20AND%20resolution%20%3D%20Fixed%20AND%20type%20not%20in%20(Backport)%20AND%20level%20is%20EMPTY%20AND%20fixVersion%20in%20(13%2C%2014%2C%2015%2C%2016%2C%2017%2C%2018)%20ORDER%20BY%20fixVersion%20ASC%2C%20summary%20ASC