From hirt at openjdk.org Sat Jun 7 23:03:34 2025 From: hirt at openjdk.org (Marcus Hirt) Date: Sat, 7 Jun 2025 23:03:34 GMT Subject: RFR: 8389: JMC must stop using finalizers Message-ID: Also fixing some shutdown behaviour. ------------- Commit messages: - Cleanup - 8389: Getting rid of finalizers, also minor fixes Changes: https://git.openjdk.org/jmc/pull/653/files Webrev: https://webrevs.openjdk.org/?repo=jmc&pr=653&range=00 Issue: https://bugs.openjdk.org/browse/JMC-8389 Stats: 138 lines in 5 files changed: 100 ins; 20 del; 18 mod Patch: https://git.openjdk.org/jmc/pull/653.diff Fetch: git fetch https://git.openjdk.org/jmc.git pull/653/head:pull/653 PR: https://git.openjdk.org/jmc/pull/653 From schaturvedi at openjdk.org Sun Jun 8 18:38:31 2025 From: schaturvedi at openjdk.org (Suchita Chaturvedi) Date: Sun, 8 Jun 2025 18:38:31 GMT Subject: RFR: 5705: Explain metaspace in rule results Message-ID: <0MdGBnvoKaMj5OyJU6irphKDcXmeQMVSKAdNfAvqTUo=.ef8ba5f0-1285-4fc8-9745-11749626b989@github.com> This enhancement updates MetaspaceOomRule and IncreasingMetaspaceLiveSetRule with the proper explanation and relevant real time values which were missing. ------------- Commit messages: - 5705: Explain metaspace in rule results Changes: https://git.openjdk.org/jmc/pull/654/files Webrev: https://webrevs.openjdk.org/?repo=jmc&pr=654&range=00 Issue: https://bugs.openjdk.org/browse/JMC-5705 Stats: 44 lines in 6 files changed: 18 ins; 1 del; 25 mod Patch: https://git.openjdk.org/jmc/pull/654.diff Fetch: git fetch https://git.openjdk.org/jmc.git pull/654/head:pull/654 PR: https://git.openjdk.org/jmc/pull/654 From headius at openjdk.org Sat Jun 14 13:38:33 2025 From: headius at openjdk.org (Charles Nutter) Date: Sat, 14 Jun 2025 13:38:33 GMT Subject: RFR: 8371: Stacktrace should hide hidden frames [v2] In-Reply-To: References: Message-ID: <5z-GNEe4zlZBW6XJ55k8A0S3I7QXaWDbxvzKu9E1Gmc=.15371688-b8b4-4dbb-9d21-5c3a3587a170@github.com> On Fri, 11 Apr 2025 10:51:28 GMT, Suchita Chaturvedi wrote: >> JFR tool is hiding all the hidden frames. But in JMC, Stacktrace view is still showing lot of hidden methods which is not required from the users point of view. Hence, we will be hiding all the hidden frames as part of this enhancement. >> >> Also, we have updated some test cases also in order to get rid of hidden frames which were expected by the test cases. > > Suchita Chaturvedi has updated the pull request incrementally with one additional commit since the last revision: > > Removed ArrayList and replaced FOR-loop implementation with Streams Just a note, async-profiler has this feature and it seems to work well there. I am not sure whether it is something they do in the native binding or if it's something they do to post-process, but it helps unify multiple "essentially identical" stacks when they differ only by LambdaForm frames, which is critical for profiling heavy invokedynamic-using libraries and languages (like JRuby). I'll try to circle back to this and help. ------------- PR Comment: https://git.openjdk.org/jmc/pull/632#issuecomment-2972767663 From hdafgard at openjdk.org Sat Jun 14 14:55:35 2025 From: hdafgard at openjdk.org (Henrik =?UTF-8?B?RGFmZ8OlcmQ=?=) Date: Sat, 14 Jun 2025 14:55:35 GMT Subject: RFR: 5705: Explain metaspace in rule results In-Reply-To: <0MdGBnvoKaMj5OyJU6irphKDcXmeQMVSKAdNfAvqTUo=.ef8ba5f0-1285-4fc8-9745-11749626b989@github.com> References: <0MdGBnvoKaMj5OyJU6irphKDcXmeQMVSKAdNfAvqTUo=.ef8ba5f0-1285-4fc8-9745-11749626b989@github.com> Message-ID: On Sun, 8 Jun 2025 18:34:07 GMT, Suchita Chaturvedi wrote: > This enhancement updates MetaspaceOomRule and IncreasingMetaspaceLiveSetRule with the proper explanation and relevant real time values which were missing. core/org.openjdk.jmc.flightrecorder.rules.jdk/src/main/resources/org/openjdk/jmc/flightrecorder/rules/jdk/messages/internal/messages.properties line 523: > 521: ManyRunningProcessesRule_INFO_LIMIT_LONG=The number of simultaneous processes needed to trigger an info notice > 522: MetaspaceOomRuleFactory_RULE_NAME=Metaspace Out of Memory > 523: MetaspaceOomRuleFactory_TEXT_CAUSE=Java class metadata is allocated in native memory (metaspace). When the amount of native memory needed for a class metadata exceeds MaxMetaSpaceSize, a java.lang.OutOfMemoryError exception with a detail MetaSpace is thrown. The amount of metaspace that can be used for class metadata is limited by the parameter MaxMetaSpaceSize, which is specified on the command line. It should be MaxMetaspaceSize, not MaxMetaSpaceSize. core/org.openjdk.jmc.flightrecorder.rules.jdk/src/main/resources/org/openjdk/jmc/flightrecorder/rules/jdk/messages/internal/messages.properties line 524: > 522: MetaspaceOomRuleFactory_RULE_NAME=Metaspace Out of Memory > 523: MetaspaceOomRuleFactory_TEXT_CAUSE=Java class metadata is allocated in native memory (metaspace). When the amount of native memory needed for a class metadata exceeds MaxMetaSpaceSize, a java.lang.OutOfMemoryError exception with a detail MetaSpace is thrown. The amount of metaspace that can be used for class metadata is limited by the parameter MaxMetaSpaceSize, which is specified on the command line. > 524: MetaspaceOomRuleFactory_TEXT_ACTION=If MaxMetaSpaceSize, has been set on the command-line, increase its value. MetaSpace is allocated from the same address spaces as the Java heap. Reducing the size of the Java heap will make more space available for MetaSpace. Not a blocker, but I think it'd be nice if we checked the flag events (if available). We can say both what the current value is, and if it was set on the command line adjust the text. Something like "MaxMetaspaceSize was set to {maxMetaspaceSize} on the command line, increasing this value may help resolve the error." ------------- PR Review Comment: https://git.openjdk.org/jmc/pull/654#discussion_r2146973008 PR Review Comment: https://git.openjdk.org/jmc/pull/654#discussion_r2146972412 From schaturvedi at openjdk.org Sat Jun 14 18:35:46 2025 From: schaturvedi at openjdk.org (Suchita Chaturvedi) Date: Sat, 14 Jun 2025 18:35:46 GMT Subject: RFR: 5705: Explain metaspace in rule results [v2] In-Reply-To: <0MdGBnvoKaMj5OyJU6irphKDcXmeQMVSKAdNfAvqTUo=.ef8ba5f0-1285-4fc8-9745-11749626b989@github.com> References: <0MdGBnvoKaMj5OyJU6irphKDcXmeQMVSKAdNfAvqTUo=.ef8ba5f0-1285-4fc8-9745-11749626b989@github.com> Message-ID: > This enhancement updates MetaspaceOomRule and IncreasingMetaspaceLiveSetRule with the proper explanation and relevant real time values which were missing. Suchita Chaturvedi has updated the pull request incrementally with one additional commit since the last revision: Implemented review comments ------------- Changes: - all: https://git.openjdk.org/jmc/pull/654/files - new: https://git.openjdk.org/jmc/pull/654/files/f7765bc2..26ba259d Webrevs: - full: https://webrevs.openjdk.org/?repo=jmc&pr=654&range=01 - incr: https://webrevs.openjdk.org/?repo=jmc&pr=654&range=00-01 Stats: 40 lines in 7 files changed: 22 ins; 0 del; 18 mod Patch: https://git.openjdk.org/jmc/pull/654.diff Fetch: git fetch https://git.openjdk.org/jmc.git pull/654/head:pull/654 PR: https://git.openjdk.org/jmc/pull/654 From hdafgard at openjdk.org Wed Jun 18 13:25:37 2025 From: hdafgard at openjdk.org (Henrik =?UTF-8?B?RGFmZ8OlcmQ=?=) Date: Wed, 18 Jun 2025 13:25:37 GMT Subject: RFR: 5705: Explain metaspace in rule results [v2] In-Reply-To: References: <0MdGBnvoKaMj5OyJU6irphKDcXmeQMVSKAdNfAvqTUo=.ef8ba5f0-1285-4fc8-9745-11749626b989@github.com> Message-ID: On Sat, 14 Jun 2025 18:35:46 GMT, Suchita Chaturvedi wrote: >> This enhancement updates MetaspaceOomRule and IncreasingMetaspaceLiveSetRule with the proper explanation and relevant real time values which were missing. > > Suchita Chaturvedi has updated the pull request incrementally with one additional commit since the last revision: > > Implemented review comments core/org.openjdk.jmc.flightrecorder.rules.jdk/src/main/java/org/openjdk/jmc/flightrecorder/rules/jdk/memory/MetaspaceOomRule.java line 102: > 100: .addResult(OOM_EVENTS, oomCount).build(); > 101: } > 102: This would be cleaner if you only place the `.addResult(MAX_METASPACE_SIZE, maxMetaspaceSize)` line inside the if-block. core/org.openjdk.jmc.flightrecorder.rules.jdk/src/main/resources/org/openjdk/jmc/flightrecorder/rules/jdk/messages/internal/messages.properties line 523: > 521: ManyRunningProcessesRule_INFO_LIMIT_LONG=The number of simultaneous processes needed to trigger an info notice > 522: MetaspaceOomRuleFactory_RULE_NAME=Metaspace Out of Memory > 523: MetaspaceOomRuleFactory_TEXT_CAUSE=Java class metadata is allocated in native memory (metaspace). When the amount of native memory needed for a class metadata exceeds MaxMetaspaceSize, a java.lang.OutOfMemoryError exception with a detail MetaSpace is thrown. The amount of metaspace that can be used for class metadata is limited by the parameter MaxMetaspaceSize, which is specified on the command line. It should be Metaspace instead of MetaSpace here as well. ------------- PR Review Comment: https://git.openjdk.org/jmc/pull/654#discussion_r2147123990 PR Review Comment: https://git.openjdk.org/jmc/pull/654#discussion_r2154598362 From schaturvedi at openjdk.org Wed Jun 18 13:48:35 2025 From: schaturvedi at openjdk.org (Suchita Chaturvedi) Date: Wed, 18 Jun 2025 13:48:35 GMT Subject: RFR: 5705: Explain metaspace in rule results [v2] In-Reply-To: References: <0MdGBnvoKaMj5OyJU6irphKDcXmeQMVSKAdNfAvqTUo=.ef8ba5f0-1285-4fc8-9745-11749626b989@github.com> Message-ID: On Sat, 14 Jun 2025 18:38:02 GMT, Henrik Dafg?rd wrote: >> Suchita Chaturvedi has updated the pull request incrementally with one additional commit since the last revision: >> >> Implemented review comments > > core/org.openjdk.jmc.flightrecorder.rules.jdk/src/main/java/org/openjdk/jmc/flightrecorder/rules/jdk/memory/MetaspaceOomRule.java line 102: > >> 100: .addResult(OOM_EVENTS, oomCount).build(); >> 101: } >> 102: > > This would be cleaner if you only place the `.addResult(MAX_METASPACE_SIZE, maxMetaspaceSize)` line inside the if-block. I have placed it in IF block only. Else block doesn't have it. ------------- PR Review Comment: https://git.openjdk.org/jmc/pull/654#discussion_r2154656650 From schaturvedi at openjdk.org Wed Jun 18 14:49:18 2025 From: schaturvedi at openjdk.org (Suchita Chaturvedi) Date: Wed, 18 Jun 2025 14:49:18 GMT Subject: RFR: 5705: Explain metaspace in rule results [v3] In-Reply-To: <0MdGBnvoKaMj5OyJU6irphKDcXmeQMVSKAdNfAvqTUo=.ef8ba5f0-1285-4fc8-9745-11749626b989@github.com> References: <0MdGBnvoKaMj5OyJU6irphKDcXmeQMVSKAdNfAvqTUo=.ef8ba5f0-1285-4fc8-9745-11749626b989@github.com> Message-ID: > This enhancement updates MetaspaceOomRule and IncreasingMetaspaceLiveSetRule with the proper explanation and relevant real time values which were missing. Suchita Chaturvedi has updated the pull request incrementally with one additional commit since the last revision: Updated IF-ELSE block and Metaspace case sensitive spelling ------------- Changes: - all: https://git.openjdk.org/jmc/pull/654/files - new: https://git.openjdk.org/jmc/pull/654/files/26ba259d..26daa9e1 Webrevs: - full: https://webrevs.openjdk.org/?repo=jmc&pr=654&range=02 - incr: https://webrevs.openjdk.org/?repo=jmc&pr=654&range=01-02 Stats: 33 lines in 3 files changed: 9 ins; 9 del; 15 mod Patch: https://git.openjdk.org/jmc/pull/654.diff Fetch: git fetch https://git.openjdk.org/jmc.git pull/654/head:pull/654 PR: https://git.openjdk.org/jmc/pull/654 From schaturvedi at openjdk.org Wed Jun 18 14:49:18 2025 From: schaturvedi at openjdk.org (Suchita Chaturvedi) Date: Wed, 18 Jun 2025 14:49:18 GMT Subject: RFR: 5705: Explain metaspace in rule results [v2] In-Reply-To: References: <0MdGBnvoKaMj5OyJU6irphKDcXmeQMVSKAdNfAvqTUo=.ef8ba5f0-1285-4fc8-9745-11749626b989@github.com> Message-ID: On Sat, 14 Jun 2025 18:38:02 GMT, Henrik Dafg?rd wrote: >> Suchita Chaturvedi has updated the pull request incrementally with one additional commit since the last revision: >> >> Implemented review comments > > core/org.openjdk.jmc.flightrecorder.rules.jdk/src/main/java/org/openjdk/jmc/flightrecorder/rules/jdk/memory/MetaspaceOomRule.java line 102: > >> 100: .addResult(OOM_EVENTS, oomCount).build(); >> 101: } >> 102: > > This would be cleaner if you only place the `.addResult(MAX_METASPACE_SIZE, maxMetaspaceSize)` line inside the if-block. @Gunde I have updated the condition as per our discussion on slack. ------------- PR Review Comment: https://git.openjdk.org/jmc/pull/654#discussion_r2154807289 From hdafgard at openjdk.org Thu Jun 19 15:51:35 2025 From: hdafgard at openjdk.org (Henrik =?UTF-8?B?RGFmZ8OlcmQ=?=) Date: Thu, 19 Jun 2025 15:51:35 GMT Subject: RFR: 5705: Explain metaspace in rule results [v3] In-Reply-To: References: <0MdGBnvoKaMj5OyJU6irphKDcXmeQMVSKAdNfAvqTUo=.ef8ba5f0-1285-4fc8-9745-11749626b989@github.com> Message-ID: On Wed, 18 Jun 2025 14:49:18 GMT, Suchita Chaturvedi wrote: >> This enhancement updates MetaspaceOomRule and IncreasingMetaspaceLiveSetRule with the proper explanation and relevant real time values which were missing. > > Suchita Chaturvedi has updated the pull request incrementally with one additional commit since the last revision: > > Updated IF-ELSE block and Metaspace case sensitive spelling Marked as reviewed by hdafgard (Reviewer). ------------- PR Review: https://git.openjdk.org/jmc/pull/654#pullrequestreview-2943504806 From schaturvedi at openjdk.org Fri Jun 20 10:59:38 2025 From: schaturvedi at openjdk.org (Suchita Chaturvedi) Date: Fri, 20 Jun 2025 10:59:38 GMT Subject: Integrated: 5705: Explain metaspace in rule results In-Reply-To: <0MdGBnvoKaMj5OyJU6irphKDcXmeQMVSKAdNfAvqTUo=.ef8ba5f0-1285-4fc8-9745-11749626b989@github.com> References: <0MdGBnvoKaMj5OyJU6irphKDcXmeQMVSKAdNfAvqTUo=.ef8ba5f0-1285-4fc8-9745-11749626b989@github.com> Message-ID: On Sun, 8 Jun 2025 18:34:07 GMT, Suchita Chaturvedi wrote: > This enhancement updates MetaspaceOomRule and IncreasingMetaspaceLiveSetRule with the proper explanation and relevant real time values which were missing. This pull request has now been integrated. Changeset: f1b63e0a Author: Suchita Chaturvedi URL: https://git.openjdk.org/jmc/commit/f1b63e0aeef0252218db03a88ca69c9d7fe5823a Stats: 69 lines in 9 files changed: 40 ins; 1 del; 28 mod 5705: Explain metaspace in rule results Reviewed-by: hdafgard ------------- PR: https://git.openjdk.org/jmc/pull/654 From vpurnam at openjdk.org Tue Jun 24 11:59:21 2025 From: vpurnam at openjdk.org (Virag Purnam) Date: Tue, 24 Jun 2025 11:59:21 GMT Subject: RFR: 8404: Update to Eclipse 2025-06 Message-ID: <0z7TVXDEcO1YwwdVcq_CS2ogQ2ism4S4uxtywPyf_5U=.9456a0d3-2d5e-47a1-8456-ddff569ab50e@github.com> Eclipse platform updated to 2025-06 Jetty version to 12.0.21 (Eclipse uses 12.0.21) ASM version to 9.8 (Eclipse uses 9.8) ------------- Commit messages: - 8404: Update to Eclipse 2025-06 Changes: https://git.openjdk.org/jmc/pull/655/files Webrev: https://webrevs.openjdk.org/?repo=jmc&pr=655&range=00 Issue: https://bugs.openjdk.org/browse/JMC-8404 Stats: 160 lines in 10 files changed: 120 ins; 0 del; 40 mod Patch: https://git.openjdk.org/jmc/pull/655.diff Fetch: git fetch https://git.openjdk.org/jmc.git pull/655/head:pull/655 PR: https://git.openjdk.org/jmc/pull/655 From vpurnam at openjdk.org Tue Jun 24 12:02:56 2025 From: vpurnam at openjdk.org (Virag Purnam) Date: Tue, 24 Jun 2025 12:02:56 GMT Subject: RFR: 8404: Update to Eclipse 2025-06 Message-ID: Eclipse platform updated to 2025-06 Jetty version to 12.0.21 (Eclipse uses 12.0.21) ASM version to 9.8 (Eclipse uses 9.8) ------------- Commit messages: - 8404: Update to Eclipse 2025-06 - CherryPick JMC-8349 - CherryPick - 8349: JMC Copyright year and some http links require update Changes: https://git.openjdk.org/jmc/pull/656/files Webrev: https://webrevs.openjdk.org/?repo=jmc&pr=656&range=00 Issue: https://bugs.openjdk.org/browse/JMC-8404 Stats: 8478 lines in 3513 files changed: 219 ins; 116 del; 8143 mod Patch: https://git.openjdk.org/jmc/pull/656.diff Fetch: git fetch https://git.openjdk.org/jmc.git pull/656/head:pull/656 PR: https://git.openjdk.org/jmc/pull/656 From vpurnam at openjdk.org Tue Jun 24 12:16:18 2025 From: vpurnam at openjdk.org (Virag Purnam) Date: Tue, 24 Jun 2025 12:16:18 GMT Subject: RFR: 8404: Update to Eclipse 2025-06 [v2] In-Reply-To: References: Message-ID: > Eclipse platform updated to 2025-06 > Jetty version to 12.0.21 (Eclipse uses 12.0.21) > ASM version to 9.8 (Eclipse uses 9.8) Virag Purnam has updated the pull request with a new target base due to a merge or a rebase. The pull request now contains five commits: - Merge jmc9 - 8404: Update to Eclipse 2025-06 - CherryPick JMC-8349 - CherryPick - 8349: JMC Copyright year and some http links require update Reviewed-by: vpurnam ------------- Changes: https://git.openjdk.org/jmc/pull/656/files Webrev: https://webrevs.openjdk.org/?repo=jmc&pr=656&range=01 Stats: 452 lines in 28 files changed: 219 ins; 183 del; 50 mod Patch: https://git.openjdk.org/jmc/pull/656.diff Fetch: git fetch https://git.openjdk.org/jmc.git pull/656/head:pull/656 PR: https://git.openjdk.org/jmc/pull/656 From aptmac at openjdk.org Tue Jun 24 14:21:44 2025 From: aptmac at openjdk.org (Alex Macdonald) Date: Tue, 24 Jun 2025 14:21:44 GMT Subject: RFR: 8404: Update to Eclipse 2025-06 [v2] In-Reply-To: References: Message-ID: On Tue, 24 Jun 2025 12:16:18 GMT, Virag Purnam wrote: >> Eclipse platform updated to 2025-06 >> Jetty version to 12.0.21 (Eclipse uses 12.0.21) >> ASM version to 9.8 (Eclipse uses 9.8) > > Virag Purnam has updated the pull request with a new target base due to a merge or a rebase. The pull request now contains five commits: > > - Merge jmc9 > - 8404: Update to Eclipse 2025-06 > - CherryPick JMC-8349 > - CherryPick > - 8349: JMC Copyright year and some http links require update > > Reviewed-by: vpurnam Just a couple of formatting nits to do with indents, but looks to work well on Windows so far releng/platform-definitions/platform-definition-2025-03/platform-definition-2025-03.target line 85: > 83: > 84: > 85: Looks like there's some indenting issues around here releng/platform-definitions/platform-definition-2025-06/platform-definition-2025-06.target line 85: > 83: > 84: > 85: Needs an extra indent ------------- PR Review: https://git.openjdk.org/jmc/pull/656#pullrequestreview-2954085487 PR Review Comment: https://git.openjdk.org/jmc/pull/656#discussion_r2164155592 PR Review Comment: https://git.openjdk.org/jmc/pull/656#discussion_r2164156539 From aptmac at openjdk.org Tue Jun 24 14:23:39 2025 From: aptmac at openjdk.org (Alex Macdonald) Date: Tue, 24 Jun 2025 14:23:39 GMT Subject: RFR: 8404: Update to Eclipse 2025-06 In-Reply-To: <0z7TVXDEcO1YwwdVcq_CS2ogQ2ism4S4uxtywPyf_5U=.9456a0d3-2d5e-47a1-8456-ddff569ab50e@github.com> References: <0z7TVXDEcO1YwwdVcq_CS2ogQ2ism4S4uxtywPyf_5U=.9456a0d3-2d5e-47a1-8456-ddff569ab50e@github.com> Message-ID: <7b29M75Z33lMIz0Q9Ap4aeCGqA4EOVMqzyDoNoT5IoI=.f86e2531-46df-413c-9fb6-6bb3001d0534@github.com> On Tue, 24 Jun 2025 11:54:03 GMT, Virag Purnam wrote: > Eclipse platform updated to 2025-06 > Jetty version to 12.0.21 (Eclipse uses 12.0.21) > ASM version to 9.8 (Eclipse uses 9.8) Looks good, works well on Windows. There's just one minor indenting issue releng/platform-definitions/platform-definition-2025-06/platform-definition-2025-06.target line 85: > 83: > 84: > 85: Same indenting issue as the other PR ------------- PR Review: https://git.openjdk.org/jmc/pull/655#pullrequestreview-2954094772 PR Review Comment: https://git.openjdk.org/jmc/pull/655#discussion_r2164161504 From vpurnam at openjdk.org Tue Jun 24 14:29:49 2025 From: vpurnam at openjdk.org (Virag Purnam) Date: Tue, 24 Jun 2025 14:29:49 GMT Subject: RFR: 8404: Update to Eclipse 2025-06 [v3] In-Reply-To: References: Message-ID: > Eclipse platform updated to 2025-06 > Jetty version to 12.0.21 (Eclipse uses 12.0.21) > ASM version to 9.8 (Eclipse uses 9.8) Virag Purnam has updated the pull request incrementally with one additional commit since the last revision: fixed review comments ------------- Changes: - all: https://git.openjdk.org/jmc/pull/656/files - new: https://git.openjdk.org/jmc/pull/656/files/23866af1..85422692 Webrevs: - full: https://webrevs.openjdk.org/?repo=jmc&pr=656&range=02 - incr: https://webrevs.openjdk.org/?repo=jmc&pr=656&range=01-02 Stats: 6 lines in 3 files changed: 0 ins; 0 del; 6 mod Patch: https://git.openjdk.org/jmc/pull/656.diff Fetch: git fetch https://git.openjdk.org/jmc.git pull/656/head:pull/656 PR: https://git.openjdk.org/jmc/pull/656 From vpurnam at openjdk.org Tue Jun 24 15:55:43 2025 From: vpurnam at openjdk.org (Virag Purnam) Date: Tue, 24 Jun 2025 15:55:43 GMT Subject: RFR: 8404: Update to Eclipse 2025-06 [v2] In-Reply-To: References: Message-ID: On Tue, 24 Jun 2025 14:17:28 GMT, Alex Macdonald wrote: >> Virag Purnam has updated the pull request with a new target base due to a merge or a rebase. The pull request now contains five commits: >> >> - Merge jmc9 >> - 8404: Update to Eclipse 2025-06 >> - CherryPick JMC-8349 >> - CherryPick >> - 8349: JMC Copyright year and some http links require update >> >> Reviewed-by: vpurnam > > releng/platform-definitions/platform-definition-2025-03/platform-definition-2025-03.target line 85: > >> 83: >> 84: >> 85: > > Looks like there's some indenting issues around here Thanks @aptmac, I have fixed this. Could you please check. > releng/platform-definitions/platform-definition-2025-06/platform-definition-2025-06.target line 85: > >> 83: >> 84: >> 85: > > Needs an extra indent Fixed this as well. ------------- PR Review Comment: https://git.openjdk.org/jmc/pull/656#discussion_r2164378357 PR Review Comment: https://git.openjdk.org/jmc/pull/656#discussion_r2164379042 From aptmac at openjdk.org Tue Jun 24 15:59:39 2025 From: aptmac at openjdk.org (Alex Macdonald) Date: Tue, 24 Jun 2025 15:59:39 GMT Subject: RFR: 8404: Update to Eclipse 2025-06 [v3] In-Reply-To: References: Message-ID: On Tue, 24 Jun 2025 14:29:49 GMT, Virag Purnam wrote: >> Eclipse platform updated to 2025-06 >> Jetty version to 12.0.21 (Eclipse uses 12.0.21) >> ASM version to 9.8 (Eclipse uses 9.8) > > Virag Purnam has updated the pull request incrementally with one additional commit since the last revision: > > fixed review comments Marked as reviewed by aptmac (Reviewer). ------------- PR Review: https://git.openjdk.org/jmc/pull/656#pullrequestreview-2954464844 From vpurnam at openjdk.org Tue Jun 24 16:10:53 2025 From: vpurnam at openjdk.org (Virag Purnam) Date: Tue, 24 Jun 2025 16:10:53 GMT Subject: RFR: 8404: Update to Eclipse 2025-06 [v2] In-Reply-To: <0z7TVXDEcO1YwwdVcq_CS2ogQ2ism4S4uxtywPyf_5U=.9456a0d3-2d5e-47a1-8456-ddff569ab50e@github.com> References: <0z7TVXDEcO1YwwdVcq_CS2ogQ2ism4S4uxtywPyf_5U=.9456a0d3-2d5e-47a1-8456-ddff569ab50e@github.com> Message-ID: > Eclipse platform updated to 2025-06 > Jetty version to 12.0.21 (Eclipse uses 12.0.21) > ASM version to 9.8 (Eclipse uses 9.8) Virag Purnam has updated the pull request incrementally with one additional commit since the last revision: fixed indenting issues ------------- Changes: - all: https://git.openjdk.org/jmc/pull/655/files - new: https://git.openjdk.org/jmc/pull/655/files/5a3e2e00..e464a82b Webrevs: - full: https://webrevs.openjdk.org/?repo=jmc&pr=655&range=01 - incr: https://webrevs.openjdk.org/?repo=jmc&pr=655&range=00-01 Stats: 6 lines in 3 files changed: 0 ins; 0 del; 6 mod Patch: https://git.openjdk.org/jmc/pull/655.diff Fetch: git fetch https://git.openjdk.org/jmc.git pull/655/head:pull/655 PR: https://git.openjdk.org/jmc/pull/655 From aptmac at openjdk.org Tue Jun 24 16:10:53 2025 From: aptmac at openjdk.org (Alex Macdonald) Date: Tue, 24 Jun 2025 16:10:53 GMT Subject: RFR: 8404: Update to Eclipse 2025-06 [v2] In-Reply-To: References: <0z7TVXDEcO1YwwdVcq_CS2ogQ2ism4S4uxtywPyf_5U=.9456a0d3-2d5e-47a1-8456-ddff569ab50e@github.com> Message-ID: On Tue, 24 Jun 2025 16:07:56 GMT, Virag Purnam wrote: >> Eclipse platform updated to 2025-06 >> Jetty version to 12.0.21 (Eclipse uses 12.0.21) >> ASM version to 9.8 (Eclipse uses 9.8) > > Virag Purnam has updated the pull request incrementally with one additional commit since the last revision: > > fixed indenting issues Marked as reviewed by aptmac (Reviewer). ------------- PR Review: https://git.openjdk.org/jmc/pull/655#pullrequestreview-2954503546 From vpurnam at openjdk.org Tue Jun 24 16:10:54 2025 From: vpurnam at openjdk.org (Virag Purnam) Date: Tue, 24 Jun 2025 16:10:54 GMT Subject: RFR: 8404: Update to Eclipse 2025-06 [v2] In-Reply-To: <7b29M75Z33lMIz0Q9Ap4aeCGqA4EOVMqzyDoNoT5IoI=.f86e2531-46df-413c-9fb6-6bb3001d0534@github.com> References: <0z7TVXDEcO1YwwdVcq_CS2ogQ2ism4S4uxtywPyf_5U=.9456a0d3-2d5e-47a1-8456-ddff569ab50e@github.com> <7b29M75Z33lMIz0Q9Ap4aeCGqA4EOVMqzyDoNoT5IoI=.f86e2531-46df-413c-9fb6-6bb3001d0534@github.com> Message-ID: <4gkEGxaCvfp5tRrKH-JNsq1urA6dBpC0XTsTKrkZKDQ=.563dfc84-c7d9-4451-8d02-8118e56b9edc@github.com> On Tue, 24 Jun 2025 14:20:05 GMT, Alex Macdonald wrote: >> Virag Purnam has updated the pull request incrementally with one additional commit since the last revision: >> >> fixed indenting issues > > releng/platform-definitions/platform-definition-2025-06/platform-definition-2025-06.target line 85: > >> 83: >> 84: >> 85: > > Same indenting issue as the other PR Fixed ------------- PR Review Comment: https://git.openjdk.org/jmc/pull/655#discussion_r2164411221