)]}'
{
  "log": [
    {
      "commit": "a09877caa8f883c5a2b0d54e605a18e41bf74ba0",
      "tree": "b0d22450938d82aaa5a82a87d4c65e6eb4a7b224",
      "parents": [
        "90e86a19c9b0a4d413559755c5e7e012505cd4f4"
      ],
      "author": {
        "name": "Joerg Kubitz",
        "email": "jkubitz-eclipse@gmx.de",
        "time": "Mon Mar 28 13:37:27 2022 +0200"
      },
      "committer": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Mon Mar 28 08:15:09 2022 -0400"
      },
      "message": "Bug 579439 - adapt LineTrackerTests.testFlood\n\nThe tests logs more then the default buffer size can keep. And logs\nfaster then the console can draw. With the changes of bug 575275 the\nconsole is only formated for the visible portion of the console buffer.\n\nsee\norg.eclipse.ui.internal.console.IOConsolePartitioner.checkBufferSize()\n\nFix for the test: unlimit the console buffer during this test.\n\nChange-Id: I69803f63816469570bab9d49c4ddf2c33875a44a\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/192281\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Andrey Loskutov \u003closkutov@gmx.de\u003e\n"
    },
    {
      "commit": "90e86a19c9b0a4d413559755c5e7e012505cd4f4",
      "tree": "09cffb7e6a4603acd72198201be454a05025ed83",
      "parents": [
        "23fede531565ac8744918983a0ae3f5082209897"
      ],
      "author": {
        "name": "Jinbo Wang",
        "email": "jinbwan@microsoft.com",
        "time": "Sat Mar 19 22:19:14 2022 +0800"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Fri Mar 25 04:56:29 2022 -0400"
      },
      "message": "Bug 578145: Evaluations for lambda variables are not working in nested lambda\n\nWhen the focus frame is a lambda frame, the evaluation\nengine will explicitly extract the visible variables from\nthe target frame.\n\nCurrently, it simply looks for the target frame and the\nfollowing two frames below and adds their variables to the\nvisible set. This doesn\u0027t work for cases like chained calls\nand nested lambda.\n\nAn improved approach is to look for more frames in the\nsame debug file which encloses the target frame, and\nappend the variables of those enclosing frames to the\nvisible set as well. This can deal with nested lambda better.\n\nSigned-off-by: Jinbo Wang \u003cjinbwan@microsoft.com\u003e\nChange-Id: I57ab4fb2d0281951a693d05c8800f29d4584393f\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/191713\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Gayan Perera \u003cgayanper@gmail.com\u003e\n"
    },
    {
      "commit": "23fede531565ac8744918983a0ae3f5082209897",
      "tree": "0b2561bb90e4474ba019eb3e1317da5693e2b347",
      "parents": [
        "a0332c9c64167f852722cbe8c44444d363094a00",
        "c379adbf1fb1c5227c73c184c50b4965a8468dff"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Wed Mar 23 15:14:12 2022 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Wed Mar 23 15:14:12 2022 +0530"
      },
      "message": "Bug 577682 - [18] Release Activities\nMerge remote-tracking branch \u0027origin/BETA_JAVA18\u0027\n\nConflicts:\n\torg.eclipse.jdt.launching/META-INF/MANIFEST.MF\n\torg.eclipse.jdt.launching/pom.xml\n\nChange-Id: Ib156ab75c4ee01c90fa9a91d8e19a93390fb362e\n"
    },
    {
      "commit": "a0332c9c64167f852722cbe8c44444d363094a00",
      "tree": "89aa2d14e6a22ec5fadfbdbf919e69d2fc953667",
      "parents": [
        "947df2d9170a2b1d4861aa308ac1e57fb5517093"
      ],
      "author": {
        "name": "Jonah Graham",
        "email": "jonah@kichwacoders.com",
        "time": "Mon Mar 21 17:15:12 2022 -0400"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Wed Mar 23 02:16:11 2022 -0400"
      },
      "message": "Bug 526917 - Allow all indexing to complete before query starts\n\ngetJavaElementMatches is doing a Java search - via\nthe OpenFromClipboardAction.\n\nThe SearchEngine tests which have some similar functionality all wait\nfor the index before trying to do the search. See most of the tests under\norg.eclipse.jdt.core.tests.model.AbstractJavaSearchTests.\nCode like one of these patterns is common:\n1)\n IndexManager indexManager \u003d JavaModelManager.getIndexManager();\n indexManager.indexAll(project.getProject());\n waitUntilIndexesReady();\n2)\n JavaModelManager.getIndexManager().waitForIndex(false, null);\n3)\n refresh(project);\n waitForAutoBuild();\n waitUntilIndexesReady();\n\nBy adding the waitForIndex it is hoped the flaky test becomes stable.\n\nChange-Id: Ic31ed2e5dc9d5541e49f455c87b04bdf7f1e1f7b\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/192113\nTested-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "947df2d9170a2b1d4861aa308ac1e57fb5517093",
      "tree": "9dac9de1628fce6d379793395974d27d6aec215e",
      "parents": [
        "37ef89d0e0d4257e3faf04eb012d9692de4c7777"
      ],
      "author": {
        "name": "Jonah Graham",
        "email": "jonah@kichwacoders.com",
        "time": "Mon Mar 21 17:08:21 2022 -0400"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Wed Mar 23 02:15:39 2022 -0400"
      },
      "message": "Bug 526917 - Add some additional logging to the tests\n\nThis makes the logging a little more like the rest of the debug\ntests and makes it easier to identify when other errors in stdout/err\nhappen around the time of OpenFromClipboardTests\n\nChange-Id: Icf65a4b81513f8571020c20e6c008f9841e96ac0\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/192112\nTested-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "37ef89d0e0d4257e3faf04eb012d9692de4c7777",
      "tree": "a61566b214fed748aa76149db15dced07f8019e9",
      "parents": [
        "fbb7d4667aa47cdd7ecd32a5db330ad55eff0a7f"
      ],
      "author": {
        "name": "Jonah Graham",
        "email": "jonah@kichwacoders.com",
        "time": "Mon Mar 21 10:35:13 2022 -0400"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Wed Mar 23 02:13:29 2022 -0400"
      },
      "message": "Bug 526917 - Revert \"[Tests] OpenFromClipboardTests Failed\"\n\nTestAgainException isn\u0027t handled, so tests aren\u0027t actually running\nagain with this flag. Alternative here is to refactor to extend\nAbstractDebugTest instead, or to use AbstractDebugTest.runBare\nhere.\n\nThis reverts commit 656256fc044d3f3d4ccb257ddde54f38d0f31f2d.\n\nChange-Id: I04589fc4bf8560493cb2ca82bdf2edc6cde5d23e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/192111\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "c379adbf1fb1c5227c73c184c50b4965a8468dff",
      "tree": "1f625864a570d04ca79fab7f36321e0b87fc10d3",
      "parents": [
        "77bd9ada1d52cb0d206cfe475cedd8b78abe87d2"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Tue Mar 22 23:25:49 2022 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Tue Mar 22 13:58:08 2022 -0400"
      },
      "message": "Bug 577735 - [18] Java 18 API doc to be added for JRE library\n\nChange-Id: I616c079cf377579e1dc7ed5bd1bc32b77e770a97\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/192161\nTested-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "77bd9ada1d52cb0d206cfe475cedd8b78abe87d2",
      "tree": "c5f1b8ddd5c92510821c5abc380eb64202f83d77",
      "parents": [
        "5858c637bfff67c255f21fdd7a472487df3f00f9"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Mon Mar 21 18:18:45 2022 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Tue Mar 22 13:53:29 2022 -0400"
      },
      "message": "Bug 577736 - [18] Remove JCP disclaimers and BETA from code in Debug\n\nChange-Id: I46284bc3cb198a8b7211c8d5d6cc31eb6213231c\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/192084\nTested-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "fbb7d4667aa47cdd7ecd32a5db330ad55eff0a7f",
      "tree": "8c5c15c71f58213354a3f6f1851ad3ba14e2ca4b",
      "parents": [
        "91ad9d7557ef761ae4c94f0178f3e85b6dd637c5"
      ],
      "author": {
        "name": "Zsombor Gegesy",
        "email": "gzsombor@gmail.com",
        "time": "Sun Jan 30 12:50:43 2022 +0100"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Mon Mar 21 03:09:03 2022 -0400"
      },
      "message": "Bug 578450 - Do not show \u0027set object label\u0027 for nulls and primitive values\n\nChange-Id: If3664198151687dcf71a602c5035b0bfc9ee4c81\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/190176\nTested-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "91ad9d7557ef761ae4c94f0178f3e85b6dd637c5",
      "tree": "a2b6c5dc80c256f8b5783591baa216cc7722dc42",
      "parents": [
        "e8f3ae035ee8c28629bff31abad7dcfc84292252"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Fri Mar 18 12:58:34 2022 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Fri Mar 18 04:05:57 2022 -0400"
      },
      "message": "Bug 577736 - [18] Remove JCP disclaimers and BETA from code in Debug\nBumping up in master for 4.24\n\nChange-Id: I63df0894596bcc4e17c67a0b530b688c15d2aa83\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/192047\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "5858c637bfff67c255f21fdd7a472487df3f00f9",
      "tree": "b3d06e32715cc629b35db1d041f1ace041d10c71",
      "parents": [
        "fb1d2d00a39d1a24d7cc9b7b9ac23d8c177c195d"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Fri Mar 18 13:03:30 2022 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Fri Mar 18 03:34:59 2022 -0400"
      },
      "message": "Bug 577736 - [18] Remove JCP disclaimers and BETA from code in Debug\nIncrementing by 50 for the marketplace entry bundle\n\nChange-Id: I16ec146eff0009592fba5a06810c15683605b9fe\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/192048\nTested-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "e8f3ae035ee8c28629bff31abad7dcfc84292252",
      "tree": "469be8fa673c7b97d985b10e72f73e03828abbed",
      "parents": [
        "9fbdbbf43aca73f82c3d078c7987faa35897545b"
      ],
      "author": {
        "name": "Jonah Graham",
        "email": "jonah@kichwacoders.com",
        "time": "Thu Mar 10 12:45:55 2022 -0500"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Fri Mar 11 08:20:04 2022 -0500"
      },
      "message": "Bug 576999: Wait for selectFrame to complete before resuming test\n\nDoing a select frame causes (after some delay) a selectAndReveal on the\neditor for the frame\u0027s location. Make sure this selectAndReveal is\ncomplete before continuing the test.\n\nPrior to this patch, sometimes the frame\u0027s selectAndReveal ran after the\nkey one in the test and the wrong thing would be selected in the editor\nfor the test.\n\ntriggerWinGerrit\n\nChange-Id: I7fbf951886ff157baa0b30fe5e3c73fa2aae0368\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/191738\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nTested-by: Releng Bot \u003creleng-bot@eclipse.org\u003e\nReviewed-by: Jonah Graham \u003cjonah@kichwacoders.com\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "9fbdbbf43aca73f82c3d078c7987faa35897545b",
      "tree": "e652c20e679cefe8aef34cf6c05fa94188320024",
      "parents": [
        "98a7b7ecd42b36a0df5d502eea23066aa2084bc7"
      ],
      "author": {
        "name": "Simeon Andreev",
        "email": "simeon.danailov.andreev@gmail.com",
        "time": "Wed Mar 09 09:53:20 2022 +0100"
      },
      "committer": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Wed Mar 09 05:08:28 2022 -0500"
      },
      "message": "Bug 547041 - bumped jdt.debug.tests bundle version\n\nChange-Id: I03a6a8e9b6ee89eca27abc9cad4c60b54110e40c\nSigned-off-by: Simeon Andreev \u003csimeon.danailov.andreev@gmail.com\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/191634\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Andrey Loskutov \u003closkutov@gmx.de\u003e\n"
    },
    {
      "commit": "98a7b7ecd42b36a0df5d502eea23066aa2084bc7",
      "tree": "2d61fe08602f411162a3bf2ed043244cfe3e7e18",
      "parents": [
        "96edf51f84dd94319e51cb83373de2159c4bb892"
      ],
      "author": {
        "name": "Simeon Andreev",
        "email": "simeon.danailov.andreev@gmail.com",
        "time": "Wed Feb 23 12:29:45 2022 +0100"
      },
      "committer": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Tue Mar 08 10:55:09 2022 -0500"
      },
      "message": "Bug 578899 - NPE with breakpoint in ClassLoader.getDefinedPackage()\n\nThis change adds null checks to callers of\nJDIStackFrame.getUnderlyingStackFrame(), to prevent NPEs that are not\nhandled by JDT. Such NPEs result in an error dialog.\n\nJDIStackFrame.getUnderlyingStackFrame() can return null, if the\nJDIStackFrame object is used after JDIThread.disposeStackFrames() is\ncalled on the respective JDIThread.\n\nIn particular, JDIStackFrame.fStackFrame is set to null on a thread\nresume. When getUnderlyingStackFrame() is called with a null in\nfStackFrame, and a suspended thread (e.g. the next breakpoint was hit),\nthe method relies on JDIThread.computeStackFrames() to set the value of\nfStackFrame. This is done in JDIStackFrame.bind(). However, after a\nJDIThread.disposeStackFrames() call, JDIThread no longer has a reference\nto the original JDIStackFrame object, and so will not set its\nfStackFrame. So getUnderlyingStackFrame() returns a null.\n\nJDIThread.disposeStackFrames() is called when a thread start event is\nsent by the debuggee JVM, and JDT finds a JDIThread object to match the\nunderlying JVM thread (the stack frames of that JDIThread are then\ncleared).\n\nChange-Id: I075de893c53f436c8c56e6834925c216cbf704fd\nSigned-off-by: Simeon Andreev \u003csimeon.danailov.andreev@gmail.com\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/191125\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Andrey Loskutov \u003closkutov@gmx.de\u003e\n"
    },
    {
      "commit": "96edf51f84dd94319e51cb83373de2159c4bb892",
      "tree": "75b97397d0bd09652e9441ce4672552f79c68e09",
      "parents": [
        "fef48dffe7f38af9844ddb06caab9d7fac32f837"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Tue Mar 08 17:31:24 2022 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Tue Mar 08 07:26:23 2022 -0500"
      },
      "message": "Bug 579099 - Cannot create lambda entry breakpoints on same method on 2\ndifferent lines\n\nChange-Id: I7f6dd0a80bf3ca7d64807fa774345457a176071b\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/191600\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "fef48dffe7f38af9844ddb06caab9d7fac32f837",
      "tree": "ee2c65d2e45aa29d6250b31132fb55677ca47e36",
      "parents": [
        "5321da48e3df8ae76e790078b2ddde04ce546933"
      ],
      "author": {
        "name": "Gayan Perera",
        "email": "gayanper@gmail.com",
        "time": "Sun Mar 06 15:42:47 2022 +0100"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Tue Mar 08 06:56:28 2022 -0500"
      },
      "message": "Bug 579100 - Add support for lambda breakpoints with outer variables\n\nWhen generating lambda methods for expressions with outer variables,\nthose variable becomes part of lambda method parameters. Now those\nparameters are considered when matching the method entry debug points.\n\nChange-Id: Idb46332d8e9fe3df2a9fb4a8ad4103f92e26b04a\nSigned-off-by: Gayan Perera \u003cgayanper@gmail.com\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/191517\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "5321da48e3df8ae76e790078b2ddde04ce546933",
      "tree": "247a7048954c11048ff4ea707f6cd64715891a5d",
      "parents": [
        "88d6938149b937c9c44b173286b16bbb1c679c21"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Sat Mar 05 11:22:35 2022 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Mon Mar 07 22:11:10 2022 -0500"
      },
      "message": "Bug 579099 - Cannot create lambda entry breakpoints on same method on 2\ndifferent lines\n\nChange-Id: Idc63f56ca64c535a315f0e097bc37cbf56eb7507\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/191506\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "88d6938149b937c9c44b173286b16bbb1c679c21",
      "tree": "e52f810337a580afd4263b51f5063af58a0bd907",
      "parents": [
        "a6b4e6da4beb5347e4c95f4ebfa503081c6744e3"
      ],
      "author": {
        "name": "Gayan Perera",
        "email": "gayanper@gmail.com",
        "time": "Sun Mar 06 19:01:54 2022 +0100"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Mon Mar 07 12:08:12 2022 -0500"
      },
      "message": "Bug 579100 - Bump bundle versions\n\nChange-Id: I198938d6376610016e74a598e33a99baa444ae7d\nSigned-off-by: Gayan Perera \u003cgayanper@gmail.com\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/191521\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "a6b4e6da4beb5347e4c95f4ebfa503081c6744e3",
      "tree": "6c61319782a63899f03701ca5e7540f07b163282",
      "parents": [
        "3cbf71c91c16c91cba9f8887b52208c2ad39e9a7"
      ],
      "author": {
        "name": "Sravan Kumar Lakkimsetti",
        "email": "sravankumarl@in.ibm.com",
        "time": "Fri Mar 04 18:53:41 2022 +0530"
      },
      "committer": {
        "name": "Vikas Chandra",
        "email": "Vikas.Chandra@in.ibm.com",
        "time": "Fri Mar 04 09:01:50 2022 -0500"
      },
      "message": "Bug 579073 - POM and product version change for 4.24 release\n\nSigned-off-by: Sravan Kumar Lakkimsetti \u003csravankumarl@in.ibm.com\u003e\nChange-Id: I31ac9c6103da44f2e39f48a8d06e90f3d0db8da8\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/191455\nTested-by: Vikas Chandra \u003cVikas.Chandra@in.ibm.com\u003e\nReviewed-by: Vikas Chandra \u003cVikas.Chandra@in.ibm.com\u003e\n"
    },
    {
      "commit": "fb1d2d00a39d1a24d7cc9b7b9ac23d8c177c195d",
      "tree": "2e669f7bf1e8842daac11431e9281e97980cd158",
      "parents": [
        "2bfca909eb9535fb51ea62bc56e7d9301bbbeea1",
        "3cbf71c91c16c91cba9f8887b52208c2ad39e9a7"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Fri Mar 04 17:06:42 2022 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Fri Mar 04 06:40:35 2022 -0500"
      },
      "message": "Bug 577731 - Merge remote-tracking branch \u0027origin/master\u0027 into BETA_JAVA18\n\nChange-Id: I0e0b1fbda8c91597774da1ba7a54dbecb9d0004f\n"
    },
    {
      "commit": "3cbf71c91c16c91cba9f8887b52208c2ad39e9a7",
      "tree": "62332fb0f310ec353a75c7e843d77477f7f2a784",
      "parents": [
        "6b874c00823f18503f5626db339784d9e1bef71c"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Mon Feb 28 12:57:53 2022 +0530"
      },
      "committer": {
        "name": "Kalyan Prasad Tatavarthi",
        "email": "kalyan_prasad@in.ibm.com",
        "time": "Tue Mar 01 00:51:47 2022 -0500"
      },
      "message": "Bug 578996 - Breakpoints cannot be place in nested lambdas\n\nChange-Id: I38494b4f2d105fadd96a2d64460c2403775dee12\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/191250\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Gayan Perera \u003cgayanper@gmail.com\u003e\nReviewed-by: Kalyan Prasad Tatavarthi \u003ckalyan_prasad@in.ibm.com\u003e\n"
    },
    {
      "commit": "6b874c00823f18503f5626db339784d9e1bef71c",
      "tree": "6a0b0b8f10c58f9db9355831977b35a6f3e35375",
      "parents": [
        "32039d271ae35c499864a36d83f38d0f0f5b2705"
      ],
      "author": {
        "name": "Niraj Modi",
        "email": "niraj.modi@in.ibm.com",
        "time": "Fri Feb 25 13:02:10 2022 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Sat Feb 26 03:01:27 2022 -0500"
      },
      "message": "Bug 578526 - [Accessibility] Shortcut keys conflict in Run\nConfigurations\nAdjusting Mnemonics for De\u0026pendencies as it conflicts with U\u0026p:\nDe\u0026pendencies \u003e\u003e Dependenc\u0026ies\n\nChange-Id: Id765e333bae8437662043c46273c606eb29f5911\nSigned-off-by: Niraj Modi \u003cniraj.modi@in.ibm.com\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/191213\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "2bfca909eb9535fb51ea62bc56e7d9301bbbeea1",
      "tree": "dcaddbb7b037ee1f98e1c8839b13acbbc2457129",
      "parents": [
        "d0a20af2ab7c0ba6da2318a3b48a7649381a490a",
        "32039d271ae35c499864a36d83f38d0f0f5b2705"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Tue Feb 22 11:54:30 2022 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Tue Feb 22 11:54:30 2022 +0530"
      },
      "message": "Merge remote-tracking branch \u0027origin/master\u0027 into BETA_JAVA18\n\nChange-Id: I51b1a7c0d3c5ae179849a091cb285d5cd7c61f7b\n"
    },
    {
      "commit": "32039d271ae35c499864a36d83f38d0f0f5b2705",
      "tree": "e588398ca1b41a0efec4b5d13667a69be5590641",
      "parents": [
        "eede37519f6b6ec96f740522b002f681ce88c406"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Sat Feb 19 15:36:18 2022 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Mon Feb 21 14:01:20 2022 -0500"
      },
      "message": "Bug 531820 - [Dark Theme] Breakpoints View has white part if it has no\nfocus\n\nChange-Id: I051f48cf22e08c26b744f24d6ff34b28badd3217\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/190973\nReviewed-by: Lakshmi P Shanmugam \u003clshanmug@in.ibm.com\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\nTested-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "d0a20af2ab7c0ba6da2318a3b48a7649381a490a",
      "tree": "4462e2f4b0ca77b8300e19c07d81353f3d9c52ee",
      "parents": [
        "79a40d7d05876190e3bb87963703e654c74d51e3",
        "eede37519f6b6ec96f740522b002f681ce88c406"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Wed Feb 16 21:31:26 2022 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Wed Feb 16 11:07:31 2022 -0500"
      },
      "message": "Bug 577731 - Merge remote-tracking branch \u0027origin/master\u0027 into BETA_JAVA18\n\nChange-Id: I79d9d8a2ca4f6bbb4923a6d766c343c3cceb7a88\n"
    },
    {
      "commit": "eede37519f6b6ec96f740522b002f681ce88c406",
      "tree": "7b6c429ff14d3e5aa9c16162021a48d439f474d3",
      "parents": [
        "51558691a835db1e305094907c00dce794bde3b6"
      ],
      "author": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Wed Feb 16 15:57:03 2022 +0100"
      },
      "committer": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Wed Feb 16 10:41:37 2022 -0500"
      },
      "message": "Bug 578789 - Deadlock situation when adding new JRE\n\nDon\u0027t use syncExec() for tasks that can be done asynchronously. The\nlistener can be called from the thread that holds already a lock.\n\nChange-Id: Ic2029ae0e395a31564c97e6233ce6596086dd7f6\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/190854\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Andrey Loskutov \u003closkutov@gmx.de\u003e\n"
    },
    {
      "commit": "51558691a835db1e305094907c00dce794bde3b6",
      "tree": "1381acb67e6674af2fa9382a75b11f656459657a",
      "parents": [
        "d687cd9a0507fc2a664a8cadbd53e651b8b08890"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Wed Oct 23 14:54:54 2019 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Sat Feb 12 09:25:57 2022 -0500"
      },
      "message": "Bug 486264 - [1.8] Entry breakpoint for lambda expression\n\nChange-Id: I958f033a470598bf0da911c016cbbe8f191fbe47\nSigned-off-by: Gayan Perera \u003cgayanper@gmail.com\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/151461\nTested-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "d687cd9a0507fc2a664a8cadbd53e651b8b08890",
      "tree": "6bf705c6167283a1331c0206e7a3cdf1424171a8",
      "parents": [
        "71f6a09c5d19221df1b4761e8b04775b9ea72098"
      ],
      "author": {
        "name": "Zsombor Gegesy",
        "email": "gzsombor@gmail.com",
        "time": "Sun Nov 14 02:12:56 2021 +0100"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Fri Feb 04 13:20:54 2022 -0500"
      },
      "message": "Bug 577622 - Create a new OpenVariableDeclarationAction\n\nThis action navigates from a JDIFieldVariable to the actual source code, where that field is declared.\n\nChange-Id: I802a388a31b1f5e192da78526dc977c1b5fa479e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/188550\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "71f6a09c5d19221df1b4761e8b04775b9ea72098",
      "tree": "951ea7b7f75eb380340e128e57eaa47fac7eec39",
      "parents": [
        "6e1a157463c8f4ed4031cf2549fec4f619c206a3"
      ],
      "author": {
        "name": "Zsombor Gegesy",
        "email": "gzsombor@gmail.com",
        "time": "Sat Sep 25 00:57:53 2021 +0200"
      },
      "committer": {
        "name": "Jeff Johnston",
        "email": "jjohnstn@redhat.com",
        "time": "Fri Feb 04 10:47:48 2022 -0500"
      },
      "message": "Bug 576615 - Use the JavaFilterTable component from jdt.core\n\nUpdate JavaStepFilterPreferencePage, ExceptionFilterEditor and SelectImportDialog to use the new component.\nThis makes redundant, unused a lot of code - which previously duplicated in multiple places\n\nChange-Id: I2aafa366dae3603b47b83f216a903446ae4b86ab\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/187774\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nTested-by: Jeff Johnston \u003cjjohnstn@redhat.com\u003e\nReviewed-by: Jeff Johnston \u003cjjohnstn@redhat.com\u003e\n"
    },
    {
      "commit": "6e1a157463c8f4ed4031cf2549fec4f619c206a3",
      "tree": "8836c836303306574243a5d2fc8ee981165b1ab5",
      "parents": [
        "9ac3d785ae1f6b03bfa2015c4fd2dff145b4964f"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Wed Feb 02 22:35:28 2022 +0530"
      },
      "committer": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Wed Feb 02 12:30:43 2022 -0500"
      },
      "message": "Bug 578529 - [Accessibility] Shortcut key conflict in Debug preferences\n\nChange-Id: I54c73ce4fa8837d6992d5214c2c05a001e794218\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/190322\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nTested-by: Andrey Loskutov \u003closkutov@gmx.de\u003e\nReviewed-by: Andrey Loskutov \u003closkutov@gmx.de\u003e\n"
    },
    {
      "commit": "9ac3d785ae1f6b03bfa2015c4fd2dff145b4964f",
      "tree": "2cd6fe3f0d727fe9e08c2f60becce7c2454adf9d",
      "parents": [
        "010526220bd9e1ec8bf644fa40f947dc6b24b3bd"
      ],
      "author": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Mon Jan 24 20:09:12 2022 +0100"
      },
      "committer": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Tue Jan 25 15:08:54 2022 -0500"
      },
      "message": "Bug 574403 - Show process ID for process element in Debug view\n\nAdded process id to the process element label in the Debug view.\n\nChange-Id: Id2c0e9a7b3240ce1b3a7a99689e07ca5bf0cf3eb\nSigned-off-by: Andrey Loskutov \u003closkutov@gmx.de\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/189972\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nTested-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "010526220bd9e1ec8bf644fa40f947dc6b24b3bd",
      "tree": "7ecc02d30595579f9dd67125e5ad369278988425",
      "parents": [
        "f5f784d8f97c4ff82bf2903e99fe4c4738f8653a"
      ],
      "author": {
        "name": "Simeon Andreev",
        "email": "simeon.danailov.andreev@gmail.com",
        "time": "Tue Jan 04 09:29:52 2022 +0100"
      },
      "committer": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Tue Jan 25 09:39:41 2022 -0500"
      },
      "message": "Bug 558907 - Step over should filter lambda synthetic line\n\nWhen stepping over the last line of a lambda body, the debugger will\nhold at a synthetic line that is not visible in the source code. This\nchange ensures such lines are filtered by step over.\n\nChange-Id: I15d61b2f4ef5becefb9a5d3558dc12c5664581ee\nSigned-off-by: Simeon Andreev \u003csimeon.danailov.andreev@gmail.com\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/189240\nTested-by: Andrey Loskutov \u003closkutov@gmx.de\u003e\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Andrey Loskutov \u003closkutov@gmx.de\u003e\n"
    },
    {
      "commit": "f5f784d8f97c4ff82bf2903e99fe4c4738f8653a",
      "tree": "c8fca763a930ce656fea8ac051a8c85380b41d9c",
      "parents": [
        "530846db516280ca88dbc80e098107ce37501477"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Mon Jan 10 16:20:57 2022 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Wed Jan 12 05:39:33 2022 -0500"
      },
      "message": "Bug 574831 - Computation of module name in Java launch use wrong module\n\nChange-Id: I587e95d6c30f270bdf22778140dc884e8ce947bc\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/189428\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "530846db516280ca88dbc80e098107ce37501477",
      "tree": "9a81474d605c1b9d9d44574ed2a3498ecc5541a1",
      "parents": [
        "0a20bdb9a62333eb8cde7b16e801fbb5246da79d"
      ],
      "author": {
        "name": "Gayan Perera",
        "email": "gayanper@gmail.com",
        "time": "Thu Jan 06 20:05:44 2022 +0100"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Mon Jan 10 14:02:21 2022 -0500"
      },
      "message": "Bug 575551 - Fix evaluations at deeply nested intermediate lambda frames\n\nThe fix will add support to extract variables starting from correct\nframe in the current call stack for lambda frames. Also this fix generic\nvariables with upper bound type variables.\n\nChange-Id: I86a181df34c3a1045c4a30ec07b9dbcd9ab5c073\nSigned-off-by: Gayan Perera \u003cgayanper@gmail.com\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/189357\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "0a20bdb9a62333eb8cde7b16e801fbb5246da79d",
      "tree": "527c52d4045b948dcf2c05d0b5f1c6355935cda2",
      "parents": [
        "a720cf2f52e27c2fb85bbe64fecfeb73db9fb5c8"
      ],
      "author": {
        "name": "Gayan Perera",
        "email": "gayanper@gmail.com",
        "time": "Sun Jan 09 12:00:41 2022 +0100"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Mon Jan 10 01:51:23 2022 -0500"
      },
      "message": "Bug 575551 - bump bundle version for 4.23\n\nChange-Id: I23447164fc7f53cae28e32d517a7d694604c85f6\nSigned-off-by: Gayan Perera \u003cgayanper@gmail.com\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/189415\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\n"
    },
    {
      "commit": "a720cf2f52e27c2fb85bbe64fecfeb73db9fb5c8",
      "tree": "8123599d46b4d2f7e3bbb62fd87c83cfd4938e30",
      "parents": [
        "f91b69638f6c81157d6929e65fa9477a09f0b083"
      ],
      "author": {
        "name": "Zsombor Gegesy",
        "email": "gzsombor@gmail.com",
        "time": "Sat Nov 06 00:53:33 2021 +0100"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Sun Jan 09 23:22:29 2022 -0500"
      },
      "message": "Bug 577103 - Set color on watch expressions and inspect results for labelled objects\n\nChange-Id: Iab1fbfe4f7f4a8cb70840cc22fc61d9301584ca6\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/187426\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "f91b69638f6c81157d6929e65fa9477a09f0b083",
      "tree": "4483700b1e7c5c13767bebd6f244bbc2f7631f1d",
      "parents": [
        "42bab700a756ca2f631d2dd5b1d210b2e07f8442"
      ],
      "author": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Thu Dec 02 14:58:47 2021 +0100"
      },
      "committer": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Tue Dec 14 13:52:38 2021 -0500"
      },
      "message": "Bug 577564 - add warning dialog before modifying final fields\n\nAdded preference and dialog to warn user before modifying final fields\nvalues in debugger either by a context menu or via the embeded value\neditor. The new preference is enabled by default.\n\nTo disable in a product, following value can be used:\norg.eclipse.jdt.debug.ui/org.eclipse.jdt.debug.ui.prompt_before_modifying_final_fields\u003dfalse\n\nChange-Id: I52a88eb3f1239bf04472f3f5f651be90c2e583b9\nSigned-off-by: Andrey Loskutov \u003closkutov@gmx.de\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/188471\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\n"
    },
    {
      "commit": "79a40d7d05876190e3bb87963703e654c74d51e3",
      "tree": "8272e406e2742e1c85b0eae4aac81479497f9de7",
      "parents": [
        "42bab700a756ca2f631d2dd5b1d210b2e07f8442"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Fri Dec 10 00:36:23 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Thu Dec 09 14:16:47 2021 -0500"
      },
      "message": "Bug 577724 - [18] Add Execution Environment for JavaSE-18\n\nChange-Id: I98bb441addfb3981db1861563cf345e60bfe35f8\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/188707\nTested-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "42bab700a756ca2f631d2dd5b1d210b2e07f8442",
      "tree": "a6f0592e9e69b0069e43107f8fab80d66d95c7ec",
      "parents": [
        "66f1dac597c3e66b4f436406dadbaab0214757a5"
      ],
      "author": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Thu Dec 02 14:56:30 2021 +0100"
      },
      "committer": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Thu Dec 02 09:24:19 2021 -0500"
      },
      "message": "Bug 577564 - bump bundle version for 4.23\n\nChange-Id: I54de6e917060dbde3429e99e6c5908ef1f9d4167\nSigned-off-by: Andrey Loskutov \u003closkutov@gmx.de\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/188470\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\n"
    },
    {
      "commit": "66f1dac597c3e66b4f436406dadbaab0214757a5",
      "tree": "b32121f012c9efff4f990aeb28fbd3dd5e5fd860",
      "parents": [
        "94713e5031bcf3ff3efc010c6ab8126d316f0494"
      ],
      "author": {
        "name": "Sravan Kumar Lakkimsetti",
        "email": "sravankumarl@in.ibm.com",
        "time": "Thu Nov 25 15:26:05 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Fri Nov 26 02:31:19 2021 -0500"
      },
      "message": "Bug 577442 - POM and product version change for 4.23 release\n\nChange-Id: Ib5bbb9c52a8ef8575106be2117e4b5901fb0c588\nSigned-off-by: Sravan Kumar Lakkimsetti \u003csravankumarl@in.ibm.com\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/188115\nTested-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "94713e5031bcf3ff3efc010c6ab8126d316f0494",
      "tree": "03a6a036e7c0338c47ded911331c17691a705863",
      "parents": [
        "16a779ea8d155b216b44f195f9ebca005754cd3d"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Wed Nov 10 16:32:25 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Fri Nov 12 08:03:30 2021 -0500"
      },
      "message": "Bug 577171 - Exception processing async thread queue\n\nChange-Id: I3b5a921c2ad9c5bfaef7449242880517884fafd7\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/187576\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nTested-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "16a779ea8d155b216b44f195f9ebca005754cd3d",
      "tree": "b6ebe50e422808596fd1dad936206a17f7e7ce07",
      "parents": [
        "cb672ab757d420f7360dc3ad5a6ce863cee7b8cc"
      ],
      "author": {
        "name": "Zsombor Gegesy",
        "email": "gzsombor@gmail.com",
        "time": "Sun Nov 07 23:31:47 2021 +0100"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Mon Nov 08 14:31:56 2021 -0500"
      },
      "message": "Bug 577119 - Expressions does not work when records defined as inner classes are used\n\n Eclipse tries to parse the source code with a parser which only supports Java 1.4, so\nit fails to detect the \u0027records\u0027 coming from Java 17. This prevents using the \u0027Expression\u0027 view\nwhen the class contains inner record classes, and there are local variables with that type\n\nChange-Id: I38ec4f6f1ffc66c67807fcdc064a9cf8c4353e19\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/187494\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "cb672ab757d420f7360dc3ad5a6ce863cee7b8cc",
      "tree": "2d73fe945d58f5b872b9d250963eee3a915ff7a0",
      "parents": [
        "f615f802cefb1665b7d76786bb7542ec2ca626d9"
      ],
      "author": {
        "name": "Zsombor Gegesy",
        "email": "gzsombor@gmail.com",
        "time": "Wed Nov 03 23:12:24 2021 +0100"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Mon Nov 08 10:45:25 2021 -0500"
      },
      "message": "Bug 277278 - Support autoboxing on change-value\n\nDuring debugging, if the user provides a primitive value, but the variable type is a boxed type\nconvert the value automatically.\n\nChange-Id: I618dfe3d0b320eed4de903e64cf51ce38d312efb\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/187291\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nTested-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "f615f802cefb1665b7d76786bb7542ec2ca626d9",
      "tree": "cef62aeb9744a972f61fb20e46b63e0813cf4f26",
      "parents": [
        "69fbe862f7587afdffe0bca9204ccb1fbc1b5f8b"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Thu Nov 04 13:26:04 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Thu Nov 04 06:12:28 2021 -0400"
      },
      "message": "Bug 549179 - Adding project to a run configuration with a dependency to\na project that is already in the run configration\n\nChange-Id: I56d077f6418554808461f8c4d9d21bedea58bd4e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/187301\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nTested-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\nReviewed-by: Dieter Mai \u003cmaidieter@googlemail.com\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "69fbe862f7587afdffe0bca9204ccb1fbc1b5f8b",
      "tree": "9a097de99313c8976e6d120fef2257fb76b7c82f",
      "parents": [
        "758aa89360e4c9eb222af7914c67d764107c408c"
      ],
      "author": {
        "name": "Gayan Perera",
        "email": "gayanper@gmail.com",
        "time": "Tue Nov 02 18:33:45 2021 +0100"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Wed Nov 03 10:44:24 2021 -0400"
      },
      "message": "Bug 576829 - Fix evaluations for variables with recursive generic\n\nAdd new test case to make sure multiple recursive generic parameters\nworks.\n\nChange-Id: I6aaa7f9b867cdda6a889c9d3b75b906a040dd820\nSigned-off-by: Gayan Perera \u003cgayanper@gmail.com\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/187240\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sebastian Zarnekow \u003csebastian.zarnekow@gmail.com\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "758aa89360e4c9eb222af7914c67d764107c408c",
      "tree": "62b8c65196538b9bdb55382bd9b5b34a2154d856",
      "parents": [
        "39150a4dc8af145c12f350efbcca07eb6a391d51"
      ],
      "author": {
        "name": "Thomas Wolf",
        "email": "thomas.wolf@paranor.ch",
        "time": "Sat Oct 30 14:50:57 2021 +0200"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Tue Nov 02 02:29:58 2021 -0400"
      },
      "message": "Bug 576979 - Use LF as line endings\n\nAbstractReader used CR (not CRLF!) as line endings. Replace all CRs\nby LFs.\n\nChange-Id: I32c9ceca7886dbaa656c8aa222026fd52944ad9c\nSigned-off-by: Thomas Wolf \u003cthomas.wolf@paranor.ch\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/187192\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "39150a4dc8af145c12f350efbcca07eb6a391d51",
      "tree": "177405420cfe49b2d1c1040479ca7791b802e1fc",
      "parents": [
        "6959f9d037b51a7cf5735a9bbbb91bb79366aaa6"
      ],
      "author": {
        "name": "Gayan Perera",
        "email": "gayanper@gmail.com",
        "time": "Thu Oct 28 19:48:13 2021 +0200"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Mon Nov 01 15:07:15 2021 -0400"
      },
      "message": "Bug 576829 - Fix evaluations for variables with recursive generic\n\nThe variable types received from the debugger doesn\u0027t contains the\ncorrect generic bounds nor type params for recursive type params, this\ncause a compilation issue in the generated snippet source. The fix tries\nto find the correct generic types/bounds from the AST and apply them\ninto variables that are added into generated eval method.\n\nChange-Id: Ie136a4a54d6e855d75d717380e9086f1d296a115\nSigned-off-by: Gayan Perera \u003cgayanper@gmail.com\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/187132\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "6959f9d037b51a7cf5735a9bbbb91bb79366aaa6",
      "tree": "7100814bbd12d6b58bac8058728aaaa219ab2536",
      "parents": [
        "ea5a5f20cfc4cebde4e407b55b0e9b32da12f7d4"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Thu Oct 28 12:54:24 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Thu Oct 28 11:24:33 2021 -0400"
      },
      "message": "Bug 574831 - Computation of module name in Java launch use wrong module\n\nChange-Id: I23c54de4217364ccc8586609241a0747f32fdfd7\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/187080\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nTested-by: Releng Bot \u003creleng-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "ea5a5f20cfc4cebde4e407b55b0e9b32da12f7d4",
      "tree": "4275c9b7bead0ac0b2c6e63a2725723462e4a69b",
      "parents": [
        "b4e1fc969ef4f6ce209777009de3232633d0098a"
      ],
      "author": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Fri Oct 22 18:15:42 2021 +0200"
      },
      "committer": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Fri Oct 22 12:38:51 2021 -0400"
      },
      "message": "Bug 575475 - Update to ASM 9.2\n\nChange-Id: Ibdfb8e9a5d8a0c535edcba6f72e50c65d799c83e\nSigned-off-by: Andrey Loskutov \u003closkutov@gmx.de\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/186831\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\n"
    },
    {
      "commit": "b4e1fc969ef4f6ce209777009de3232633d0098a",
      "tree": "f7d054410efa9028e0a38e6a3219a89225d07ace",
      "parents": [
        "a706a3d74435f74c1a91214cdbf86e95360cccfd"
      ],
      "author": {
        "name": "Zsombor Gegesy",
        "email": "gzsombor@gmail.com",
        "time": "Wed Oct 13 14:33:50 2021 +0200"
      },
      "committer": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Thu Oct 21 08:40:36 2021 -0400"
      },
      "message": "Bug 576670 - Add ability to label objects during debugging\n\nProvide a way to assign labels to variables in the debugger and display\nthe labels later in all places where labelled object may appear (debug\nhover, Expressions view etc).\n\nAdded new (internal) API in org.eclipse.jdt.debug.core -\nIJavaObject.setLabel(String) and IJavaObject.getLabel().\n\nJDIModelPresentation/JavaVariableLabelProvider is used. The labelled\nobject is shown with bold text and configurable color, the label is\nprepended to the variable value and there will be an optional \u0027Label\u0027\ncolumn in Variables view just to display labels.\n\nChange-Id: I830ef64a5e8d85c2c621dbc6a1b50598881e8c75\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/186570\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Andrey Loskutov \u003closkutov@gmx.de\u003e\n"
    },
    {
      "commit": "a706a3d74435f74c1a91214cdbf86e95360cccfd",
      "tree": "5317ad510a633e704759f9748b139507cd5c2533",
      "parents": [
        "5ef65bb77f168f371f3f121240db4b61b8ddadb2"
      ],
      "author": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Thu Oct 21 13:45:11 2021 +0200"
      },
      "committer": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Thu Oct 21 08:25:18 2021 -0400"
      },
      "message": "Bug 576805 - SWT Resource Leak in DebugTypeSelectionDialog\n\nChange-Id: I97681631409afa18c57ed30c43dd65fd65a83c5c\nSigned-off-by: Andrey Loskutov \u003closkutov@gmx.de\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/186763\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\n"
    },
    {
      "commit": "5ef65bb77f168f371f3f121240db4b61b8ddadb2",
      "tree": "e0064f67310835acf80cde208133902e7b2120d0",
      "parents": [
        "97361966a64750d9607612ecb74b6733e63534dd"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Wed Oct 20 14:41:59 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Wed Oct 20 06:04:11 2021 -0400"
      },
      "message": "Bug 508850 - Conditional breakpoints show error if condition ends with\n//line comment\n\nChange-Id: Iecb01a73b3493394b37617d5382abb90debf68c6\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/186715\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "97361966a64750d9607612ecb74b6733e63534dd",
      "tree": "ea307802385b5085fdf70d21399085f4ec9d1d7e",
      "parents": [
        "a0a5d0647c5b45d6d5365c016b49a8a2a009afa2"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Wed Oct 20 13:17:56 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Wed Oct 20 05:10:15 2021 -0400"
      },
      "message": "Bug 508850 - Formatting changes\n\nChange-Id: Ib10c7125658f0e08cb5351660827e1bc1f8c7e65\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/186711\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "a0a5d0647c5b45d6d5365c016b49a8a2a009afa2",
      "tree": "008259dac9de85c6ba3bba8b829301556053b0fa",
      "parents": [
        "1dd8cad7a967221f332af1e3933d1d23f18a92db"
      ],
      "author": {
        "name": "Vikas Chandra",
        "email": "Vikas.Chandra@in.ibm.com",
        "time": "Mon Oct 18 12:52:05 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Mon Oct 18 08:54:08 2021 -0400"
      },
      "message": "Bug 576689 - Export and import of breakpoints don\u0027t work properly for\nrecord\n\nChange-Id: Iefbadea5ca90315650b9fd678fd13c11e8fbb40b\nSigned-off-by: Vikas Chandra \u003cVikas.Chandra@in.ibm.com\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/186578\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "1dd8cad7a967221f332af1e3933d1d23f18a92db",
      "tree": "32d92b6e550a6e0dc7c1db25a43795e1a86979ac",
      "parents": [
        "2be0857c71e90ae4c9de98bbdf5d13536860a6da"
      ],
      "author": {
        "name": "Zsombor Gegesy",
        "email": "gzsombor@gmail.com",
        "time": "Wed Aug 25 10:36:55 2021 +0200"
      },
      "committer": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Mon Oct 11 05:20:26 2021 -0400"
      },
      "message": "Bug 576399: Use the builtin APIs to copy into byte[] from files\n\nChange-Id: I8ec9675e3c56ee2811e929432a3982ef1a4cc4c6\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/186062\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Andrey Loskutov \u003closkutov@gmx.de\u003e\n"
    },
    {
      "commit": "2be0857c71e90ae4c9de98bbdf5d13536860a6da",
      "tree": "26e4e54dc5d890201dd25d89bd438ad72ff48f87",
      "parents": [
        "6a4b4cce548793f6ce73fff01a3600dfdf656cfa"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Thu Sep 30 21:25:52 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Fri Oct 08 06:11:21 2021 -0400"
      },
      "message": "Bug 470119 - ClassCastException: JDIPrimitiveValue cannot be cast to\nIJavaVariable\n\nChange-Id: I45b15737cc8f07de29e11f21683a26f63ccea374\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/186030\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "6a4b4cce548793f6ce73fff01a3600dfdf656cfa",
      "tree": "cb74f8788cad0e0f7832f772cd0e13facc8eac18",
      "parents": [
        "9ff7f68387e8ee38fd7a27b6f7931e7ac7a50e1f"
      ],
      "author": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Fri Sep 24 17:45:44 2021 +0200"
      },
      "committer": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Fri Oct 01 10:33:48 2021 -0400"
      },
      "message": "Bug 576251 - make JDIThread code a bit more thread safe\n\nChange-Id: Ie664c95d1f1060684e19a0c66ff6b05a7b4a50cd\nSigned-off-by: Andrey Loskutov \u003closkutov@gmx.de\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/185811\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\n"
    },
    {
      "commit": "9ff7f68387e8ee38fd7a27b6f7931e7ac7a50e1f",
      "tree": "577a7ceabf5aba78ad314e33c2306fb75a62407d",
      "parents": [
        "c091e4d0434a18c2d4b502c01e273ccec309fe5f"
      ],
      "author": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Wed Aug 18 11:56:52 2021 +0200"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Fri Sep 24 14:37:13 2021 -0400"
      },
      "message": "Bug 575475 - Update to ASM 9.2\n\nChange-Id: Ia5b650ad1c9e7587d7b8a72f8865b2d5cecc681f\nSigned-off-by: Andrey Loskutov \u003closkutov@gmx.de\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/184194\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nTested-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "c091e4d0434a18c2d4b502c01e273ccec309fe5f",
      "tree": "35120a257cc8de071835cb486140d91460032367",
      "parents": [
        "38aefe0cf097104448d96408705f436f3fb5fecc"
      ],
      "author": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Fri Sep 24 16:58:38 2021 +0200"
      },
      "committer": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Fri Sep 24 11:43:22 2021 -0400"
      },
      "message": "Bug 576251 - cleanup JDIThread code before functional changes\n\n- removed meaningless comments\n- removed redundand inits\n- removed unneeded casts\n\nChange-Id: I71173072439d46c8064be9813dce263255de51c3\nSigned-off-by: Andrey Loskutov \u003closkutov@gmx.de\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/185808\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\n"
    },
    {
      "commit": "38aefe0cf097104448d96408705f436f3fb5fecc",
      "tree": "2e4a742b380faee3a972108f6a3f2f0353cb2f14",
      "parents": [
        "6087bca467f66849cb35e29b77d561314e018b55"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Wed Sep 15 14:07:55 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Wed Sep 15 05:06:26 2021 -0400"
      },
      "message": "Bug 575993 - Version increment for jdt debug bundles post Java 17 merge\n\nChange-Id: I7be19afb696824c61775c205060ac98e7a5dcc09\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/185454\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "6087bca467f66849cb35e29b77d561314e018b55",
      "tree": "e2d3a1b7d8ca9a8851f705ae673d5fe11416db90",
      "parents": [
        "fe7401ffb9c4128fde84881be2598fa9e9d057ab"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Wed Sep 15 11:23:34 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Wed Sep 15 01:55:32 2021 -0400"
      },
      "message": "Bug 575847 - [17] Merge Debug from Beta to master\nversion bumpup\n\nChange-Id: I41cbbad214451055b506343800049d0b2091f41c\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/185443\nTested-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "fe7401ffb9c4128fde84881be2598fa9e9d057ab",
      "tree": "531dcccb2b4af7f3b64bb7eac896b2c04c690f46",
      "parents": [
        "c286154eb81f7892ea99a9397820e5a4f1b338be",
        "01b4e1966047c483c9895b8f3b68a28f7d0f3fc8"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Wed Sep 15 10:10:55 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Wed Sep 15 11:13:31 2021 +0530"
      },
      "message": "Bug 575847 - [17] Merge Debug from Beta to master\nMerge remote-tracking branch \u0027origin/BETA_JAVA17\u0027\n\nChange-Id: Ibfc5eafa27d2934fc84acc5f1667a31e8e6092cc\n"
    },
    {
      "commit": "01b4e1966047c483c9895b8f3b68a28f7d0f3fc8",
      "tree": "1be143b4c4d575c7f9a90874335ae49b0e156a86",
      "parents": [
        "1d3f2e9b7f234430684570f04ed3351c9d7b03cf"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Tue Sep 14 20:10:44 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Tue Sep 14 10:42:43 2021 -0400"
      },
      "message": "Bug 575939 - [17] Remove JCP disclaimers and BETA from code in Debug\n\nChange-Id: I8d2f300f4deb2a2b891ca9e37a97a89b2805158b\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/185405\nTested-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "1d3f2e9b7f234430684570f04ed3351c9d7b03cf",
      "tree": "fcae472cc31764c565cdcd570158e941a45f4b43",
      "parents": [
        "6b0f2150fadb172e1eb9b7b9311bf499cfd43946"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Mon Sep 13 16:26:39 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Tue Sep 14 10:36:02 2021 -0400"
      },
      "message": "Bug 575939 - [17] Remove JCP disclaimers and BETA from code in Debug\n\nChange-Id: Ia89f48c5679a2304c3b22447b15c07a7a5341bd7\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/185369\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "6b0f2150fadb172e1eb9b7b9311bf499cfd43946",
      "tree": "7665002eadb9e1c823f2980fc2609ccc920af41b",
      "parents": [
        "b77c5fc3f1ee41db4e17406f34d52a34c8a17608"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Tue Sep 14 12:37:17 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Tue Sep 14 04:36:05 2021 -0400"
      },
      "message": "Bug 575296 - [17] Java 17 API doc to be added for JRE library\n\nChange-Id: Ifdc56d5972f751a8809bcbb522cd89e113c13f02\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/185392\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "b77c5fc3f1ee41db4e17406f34d52a34c8a17608",
      "tree": "148c3c33e59defef0e2d1a5c70b8aa4d71ddcbd4",
      "parents": [
        "fbbababc23b6aaff5eb1887fd8d01c8a11c6a324"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Wed Sep 08 16:36:39 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Wed Sep 08 08:02:13 2021 -0400"
      },
      "message": "Bug 575845 - [17] Version bump for BETA_JAVA17\n\nChange-Id: I1de59e4da51d0cc701a96a68b04cc1cab169312e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/185140\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "c286154eb81f7892ea99a9397820e5a4f1b338be",
      "tree": "072901f91451fb7dffe175df5f1d888af7aaa8b1",
      "parents": [
        "14ccbcea70acbd8dfe9fef53140df158fc5060db"
      ],
      "author": {
        "name": "Kit Lo",
        "email": "kitlo@us.ibm.com",
        "time": "Sun Sep 05 19:29:06 2021 -0400"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Mon Sep 06 01:59:42 2021 -0400"
      },
      "message": "Bug 575782 - POM and product version change for 4.22 release\n\nChange-Id: Ic1b34b942985cd029963c53d0f5ddadcd3cbbfc5\nSigned-off-by: Kit Lo \u003ckitlo@us.ibm.com\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/185004\nTested-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "fbbababc23b6aaff5eb1887fd8d01c8a11c6a324",
      "tree": "59399fcbbb6cff2d02c53a30daa0b5cfe60e17f6",
      "parents": [
        "2f8db6460f84b5e3a4e8e896c775a15033046a58",
        "14ccbcea70acbd8dfe9fef53140df158fc5060db"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Tue Aug 17 14:35:11 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Tue Aug 17 06:28:55 2021 -0400"
      },
      "message": "Bug 573521 : Merge remote-tracking branch \u0027origin/master\u0027 into BETA_JAVA17\n\nChange-Id: I7eda581a1e0ec7ccb9ebb11d233b7d8db2da4cff\n"
    },
    {
      "commit": "14ccbcea70acbd8dfe9fef53140df158fc5060db",
      "tree": "8cdcb4dad031c5cb0dd77d67ac28a3bd8095e89d",
      "parents": [
        "40f4910452429171bcad6d7f33615f0204a4d84a"
      ],
      "author": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Mon Aug 16 19:39:30 2021 +0200"
      },
      "committer": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Mon Aug 16 14:05:49 2021 -0400"
      },
      "message": "Bug 574170 - updated bundle version and added API filter\n\nChange-Id: I2967b035fe324110bd5bc6f62f70e7391c75cc0f\nSigned-off-by: Andrey Loskutov \u003closkutov@gmx.de\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/184089\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\n"
    },
    {
      "commit": "40f4910452429171bcad6d7f33615f0204a4d84a",
      "tree": "cdd1b79567a2f5ec96f13522df2c47256ab9050a",
      "parents": [
        "c2dd7af8f0c9161182a157e0768d5bb5feed5c77"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Mon Aug 16 12:44:11 2021 -0400"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Mon Aug 16 13:20:15 2021 -0400"
      },
      "message": "Revert \"Bug 574170 - Add coloring to the stack frames of the debug thread view\"\n\nThis reverts commit c2dd7af8f0c9161182a157e0768d5bb5feed5c77.\n\nReason for revert: Needs fine tuning and to be released in 4.22\n\nChange-Id: Ia97978b0abcd3341180d1a13581803ad0df83151\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/183773\nTested-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "c2dd7af8f0c9161182a157e0768d5bb5feed5c77",
      "tree": "c0bbdd882f2d3aa378734d46b9493df0e40850bf",
      "parents": [
        "d444be271fdefccf33a2cdfc732debff2311ea35"
      ],
      "author": {
        "name": "Zsombor Gegesy",
        "email": "gzsombor@gmail.com",
        "time": "Sun Jun 13 00:40:31 2021 +0200"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Mon Aug 16 03:28:33 2021 -0400"
      },
      "message": "Bug 574170 - Add coloring to the stack frames of the debug thread view\n  and add an action to enable/disable colorization from the context menu.\n  And a preference page to configure everything - as this page is very similar to the step filter\n  preference page, that page is refactored so common code can be reused.\n  And a simple test class added, to prove that categorization works\n  Add preview of the colors, and enable to configure it\n\nChange-Id: I65283cdd216667b7ad9fe39efc2ee1c10d8bee5f\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/181897\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "d444be271fdefccf33a2cdfc732debff2311ea35",
      "tree": "cdd1b79567a2f5ec96f13522df2c47256ab9050a",
      "parents": [
        "6d615d566292294d41cb8a47e7202f1baa1e5415"
      ],
      "author": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Sun Aug 15 12:24:19 2021 +0200"
      },
      "committer": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Sun Aug 15 07:19:39 2021 -0400"
      },
      "message": "Bug 575332 - Don\u0027t use deprecated JavaProject.canonicalizedPath()\n\nChange-Id: Idef40ce52c3351705d12b6f24b951b8bfbc93ed1\nSigned-off-by: Andrey Loskutov \u003closkutov@gmx.de\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/184021\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\n"
    },
    {
      "commit": "6d615d566292294d41cb8a47e7202f1baa1e5415",
      "tree": "b4370c3c12eee8eb3b0966b2775bf980e60cd7a9",
      "parents": [
        "321e75a9bdb85b884dfbcad3737e7a3211ba83fb"
      ],
      "author": {
        "name": "Sravan Kumar Lakkimsetti",
        "email": "sravankumarl@in.ibm.com",
        "time": "Thu Aug 12 17:15:58 2021 +0530"
      },
      "committer": {
        "name": "Kalyan Prasad Tatavarthi",
        "email": "kalyan_prasad@in.ibm.com",
        "time": "Thu Aug 12 08:15:36 2021 -0400"
      },
      "message": "Bug 575375 - Update scm links in pom files to use https protocol\n\nChange-Id: I3a6d746e78bc7e7f8756af084736f9177fc6477a\nSigned-off-by: Sravan Kumar Lakkimsetti \u003csravankumarl@in.ibm.com\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/183956\nTested-by: Kalyan Prasad Tatavarthi \u003ckalyan_prasad@in.ibm.com\u003e\nReviewed-by: Kalyan Prasad Tatavarthi \u003ckalyan_prasad@in.ibm.com\u003e\n"
    },
    {
      "commit": "321e75a9bdb85b884dfbcad3737e7a3211ba83fb",
      "tree": "8d58d7ee77b31adfd5df8efb3ec5c614ad0a7e5f",
      "parents": [
        "1f63b07950714f66b0d7f72abd1b5493cebc56e2"
      ],
      "author": {
        "name": "Gayan Perera",
        "email": "gayanper@gmail.com",
        "time": "Wed Aug 04 20:38:45 2021 +0200"
      },
      "committer": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Fri Aug 06 06:03:25 2021 -0400"
      },
      "message": "Bug 575039 - Fix evaluations inside JVM classes under java9 and above\n\nWhen compiling the evaluation snippet with java runtime classes, the\ncompiler report issues due to java9 module system restrictions. Since\nthe snippet is considered to be on a unnamed module, it introduce\nconflicts, visibility issues etc.\n\nThe solution tries to use the existing internal compiler flag to switch\nthe compiler into debug friendly mode which will ignore the module\nsystem issues when compiling the snippet. This is only done if the\nruntime vm is above java 1.8 only.\n\nChange-Id: I8e83f045517feb7cfa8faf2d2dbb6a72b2774d00\nSigned-off-by: Gayan Perera \u003cgayanper@gmail.com\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/183703\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Andrey Loskutov \u003closkutov@gmx.de\u003e\n"
    },
    {
      "commit": "1f63b07950714f66b0d7f72abd1b5493cebc56e2",
      "tree": "51b26cde12afd73720c7796bacad92e7891e276e",
      "parents": [
        "fa6774a8f07b7c40adce5fb42e083ec9ad862b67"
      ],
      "author": {
        "name": "Gayan Perera",
        "email": "gayanper@gmail.com",
        "time": "Thu Jul 08 19:40:19 2021 +0200"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Wed Aug 04 09:56:34 2021 -0400"
      },
      "message": "Bug 573547 - Add support to hover on outer scope var-chains in lambda\n\nThe fix tries to find the first frame which contains the current\nhovering variable and feed that frame for all different mechanisms of\nvariable evaluations base on where we are hovering.\n\nChange-Id: I7f158ab71d0236f32de5eb686aa6078f58ea233c\nSigned-off-by: Gayan Perera \u003cgayanper@gmail.com\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/182911\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nTested-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "2f8db6460f84b5e3a4e8e896c775a15033046a58",
      "tree": "bcccc3238a2d374977100d1eb2e7986bb9e871fe",
      "parents": [
        "dfaa24f8110035f382afbb469babbc1cbbaaf2d3",
        "fa6774a8f07b7c40adce5fb42e083ec9ad862b67"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Mon Aug 02 17:24:34 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Tue Aug 03 00:18:29 2021 -0400"
      },
      "message": "Bug 573521  - Merge remote-tracking branch \u0027origin/master\u0027 into BETA_JAVA17\n\nChange-Id: Ieaf05de3b9295ccf28011824319776e0d141e036\n"
    },
    {
      "commit": "fa6774a8f07b7c40adce5fb42e083ec9ad862b67",
      "tree": "f4606882369b78e4e95a54aefe94600eb37e6924",
      "parents": [
        "739ed2746b6e8f0aafa34df9d3c73cf0f3efd558"
      ],
      "author": {
        "name": "Gayan Perera",
        "email": "gayanper@gmail.com",
        "time": "Thu Jul 22 15:31:52 2021 +0200"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Mon Jul 26 14:15:34 2021 -0400"
      },
      "message": "Bug 574969 - Fix selection resets in editor when hovering\n\nUse indirect evaluation mode to not reset the editor since the\nevaluation done as part of hovering is not triggered by the user.\n\nChange-Id: I9d6641342a6e2fc8cd4f01d1d88f3b438559865f\nSigned-off-by: Gayan Perera \u003cgayanper@gmail.com\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/183297\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "739ed2746b6e8f0aafa34df9d3c73cf0f3efd558",
      "tree": "10e167a7ef145c5d111cecde3fa4d3df68b99f34",
      "parents": [
        "18e024b1e8baf52cad9dbb1f97ea9ed39022b8c6"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "ahe@lucares.de",
        "time": "Fri May 07 16:07:01 2021 +0200"
      },
      "committer": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Sun Jul 25 11:42:15 2021 -0400"
      },
      "message": "Bug 573479 - skip already visited entries when expanding classpath\n\nDefaultProjectClasspathEntry.expandProject() performs a depth first\niteration over the projects classpath. It tries to prune already visited\nsub trees by checking if the entry is already in the expandedPath list.\nOne code path however transforms the entry before adding it to the list.\nIn that case the pruning does not work.\nFixed by introducing a dedicated set to keep track of already visited\nentries.\n\nChange-Id: I0c0946b597e225645501a410a9f14614fa6cae62\nSigned-off-by: Andreas Huber \u003cahe@lucares.de\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/180466\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Andrey Loskutov \u003closkutov@gmx.de\u003e\n"
    },
    {
      "commit": "18e024b1e8baf52cad9dbb1f97ea9ed39022b8c6",
      "tree": "f180f8affc511a3142ce69aacfddc7f9933e5177",
      "parents": [
        "4cb87a554926ffffff65f4d6c9e38453c31f6777"
      ],
      "author": {
        "name": "Andreas Huber",
        "email": "ahe@lucares.de",
        "time": "Tue May 11 09:53:18 2021 +0200"
      },
      "committer": {
        "name": "Andrey Loskutov",
        "email": "loskutov@gmx.de",
        "time": "Sun Jul 25 11:21:02 2021 -0400"
      },
      "message": "Bug 567595 - fix quadratic runtime of resolveRuntimeClasspath\n\nJavaRuntime.resolveRuntimeClasspath first resolves the classpath and\nthen removes the entry for the JRE. The latter step has quadratic\nruntime over the length of the classpath. It iterates over all entries.\nFor each entry it calls JavaProject.findPackageFragmentRoot(), which\ncalls JavaProject.getAllPackageFragmentRoots() and then iterates\nover all package fragment roots.\n\nFixed by computing the path to the JRE before the outer loop. This\nreduces the runtime to O(n).\n\nSigned-off-by: Andreas Huber \u003cahe@lucares.de\u003e\nChange-Id: I3e37c1cfce26d82dbcaf814bc27c5722fee9e22a\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/180456\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Andrey Loskutov \u003closkutov@gmx.de\u003e\n"
    },
    {
      "commit": "dfaa24f8110035f382afbb469babbc1cbbaaf2d3",
      "tree": "5935c2a9661350711ee7835d01354a65d623c9e1",
      "parents": [
        "f1b7d670629f7f2c41dca30e256d47b3b9f5dcd9"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Thu Jul 15 15:33:10 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Thu Jul 15 08:40:59 2021 -0400"
      },
      "message": "Bug 573521 - [17] Keep merging from master to BETA branch\n\nChange-Id: I85cdb004bc027a86ebde02d15f2d3e49209c25e6\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/183085\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "f1b7d670629f7f2c41dca30e256d47b3b9f5dcd9",
      "tree": "347cb9ded9deee7ab177a8d81ed1e99a6ce37e64",
      "parents": [
        "d465cd927b053f3e1cd16f680dcfc8d75f13604d",
        "4cb87a554926ffffff65f4d6c9e38453c31f6777"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Thu Jul 15 09:05:34 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Thu Jul 15 09:05:34 2021 +0530"
      },
      "message": "Merge remote-tracking branch \u0027origin/master\u0027 into BETA_JAVA17\n\nChange-Id: I024604d6ae6aae0d9e029069f5d00cdfaf10120c\n"
    },
    {
      "commit": "4cb87a554926ffffff65f4d6c9e38453c31f6777",
      "tree": "6fbcca1ad6f35015d5d442ed04d318cc695d0872",
      "parents": [
        "49c4e4a47440242e27a6571b325b5b0e585e9699"
      ],
      "author": {
        "name": "Gayan Perera",
        "email": "gayanper@gmail.com",
        "time": "Tue Jul 06 20:43:07 2021 +0200"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Wed Jul 07 05:57:08 2021 -0400"
      },
      "message": "Bug 571310 - update tests for new lambda eval support\n\nUpdate the FunctionalCaptureTest18 with all supported scenarios with\nthis fix. Add new debug tests to test the new support.\n\nChange-Id: Iea00763c44b2fe0db14b02f304a279ddcd16c2a8\nSigned-off-by: Gayan Perera \u003cgayanper@gmail.com\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/182821\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "49c4e4a47440242e27a6571b325b5b0e585e9699",
      "tree": "0f7e2ebadba9f84fb1423019c108d164f1bb047c",
      "parents": [
        "174fd49ff5651b7c267d626f00b874eeee0d5959"
      ],
      "author": {
        "name": "Gayan Perera",
        "email": "gayanper@gmail.com",
        "time": "Tue Jun 22 20:43:16 2021 +0200"
      },
      "committer": {
        "name": "Gayan Perera",
        "email": "gayanper@gmail.com",
        "time": "Thu Jul 01 15:40:59 2021 -0400"
      },
      "message": "Bug 574395 - Evaluation support in intermediate lambda frames\n\nThis fix add support to evaluate at intermediate lambda frames by\nresolving the lambda variables from the intermediate lambda frame.\n\nChange-Id: I9b776efb75d70a1722177edbbd7cc5b09a29c95a\nSigned-off-by: Gayan Perera \u003cgayanper@gmail.com\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/182363\nTested-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "174fd49ff5651b7c267d626f00b874eeee0d5959",
      "tree": "5eeb7c76f17d1f7acd206b414fe177936d1c2009",
      "parents": [
        "b6c0e27949b7d0a820bd7b4233e0ad981dfc64d5"
      ],
      "author": {
        "name": "Lars Vogel",
        "email": "Lars.Vogel@vogella.com",
        "time": "Tue Jun 22 11:59:47 2021 +0200"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Thu Jul 01 12:47:38 2021 -0400"
      },
      "message": "Bug 574017 - Remove hard-coded cleanup profiles from projects\n\nHard-coded cleanup profiles prevents us from running other cleanups via\nprofiles on a set of projects. This makes testing new profiles /\ncleanups harder. Save-actions are not affected by this change.\n\nChange-Id: I999a56732b2701b0fe87e7d415f49afc89860d15\nSigned-off-by: Lars Vogel \u003cLars.Vogel@vogella.com\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/182340\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "b6c0e27949b7d0a820bd7b4233e0ad981dfc64d5",
      "tree": "805b568ad143cf05ad1be9adbd67404845e1bdbf",
      "parents": [
        "8ad41b3e447b9a23cd91d30c91165fc24dae1a7c"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Thu Jul 01 20:27:11 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Thu Jul 01 11:21:04 2021 -0400"
      },
      "message": "Bug 574017  - Version bump up for 4.21\n\nChange-Id: Id564bd0aabe68f40a97accd19b4d0d5ed58aa29c\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/182685\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "8ad41b3e447b9a23cd91d30c91165fc24dae1a7c",
      "tree": "951a9f707c14c69fe2bff52ceac2b6dae6c87931",
      "parents": [
        "e058e5a5a1f22f0358b4f46400c69491a993d792"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Thu Jul 01 18:16:40 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Thu Jul 01 10:38:01 2021 -0400"
      },
      "message": "Bug 574017 - Version bump up for 4.21\n\nChange-Id: I54a98674c375377878c9a42dc5635fb32a21656b\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/182679\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "e058e5a5a1f22f0358b4f46400c69491a993d792",
      "tree": "99089785a25e8279a590470b33eaec57dfb4b2ea",
      "parents": [
        "9d267305a774f5db042c71412370c915e83208f4"
      ],
      "author": {
        "name": "Gayan Perera",
        "email": "gayanper@gmail.com",
        "time": "Tue May 18 20:08:11 2021 +0200"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Tue Jun 29 06:13:28 2021 -0400"
      },
      "message": "Bug 573589 - Add support for lambda evaluation with static imports\n\nWhen performing lambda expression evaluation where the source file\ncontains static imports, the static imports are added as normal imports\ninto the code snippet. This happens both for source types and binary\ntypes with source attached.\n\nChange-Id: I5d58caa3fcf0d8d040166ae080d52647dd50a5aa\nSigned-off-by: Gayan Perera \u003cgayanper@gmail.com\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/180746\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "9d267305a774f5db042c71412370c915e83208f4",
      "tree": "7eacb18c0278e88edaab3f50534f90c0b97b4450",
      "parents": [
        "d79fbe24ae392c75393c1eceb29e63d617997c31"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Tue Jun 22 16:48:39 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Tue Jun 22 08:00:15 2021 -0400"
      },
      "message": "Bug 572126 - Version bumpup for 4.21\nChange-Id: I3b9f051f39e799022af29d41e67fdefd3fea5d4e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/182342\nTested-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "d79fbe24ae392c75393c1eceb29e63d617997c31",
      "tree": "623ffb16e374febcf40ded3be4c65816e78ebad9",
      "parents": [
        "b7c42a85634fa53d2e37501c1b50b8094579abc2"
      ],
      "author": {
        "name": "Gayan Perera",
        "email": "gayanper@gmail.com",
        "time": "Sun Jun 20 20:22:09 2021 +0200"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Mon Jun 21 03:57:59 2021 -0400"
      },
      "message": "Bug 573223 - Improve chained array variable hovering\n\nWith this fix it adds array field hovering on local variables in static\nframes which are chained.\n\n\nChange-Id: I7073ab705470b3e6110dad4671287928210e8087\nSigned-off-by: Gayan Perera \u003cgayanper@gmail.com\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/182274\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "b7c42a85634fa53d2e37501c1b50b8094579abc2",
      "tree": "7cfb77ab5b3f19e4dbbaab4bc9c4401b4cebb8c0",
      "parents": [
        "476c40081060040f56a6c6be1f2ca1d8f68f7e0f"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Thu May 27 16:53:58 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Tue Jun 08 12:07:32 2021 -0400"
      },
      "message": "Bug 573618 - [16] Adding a line/method breakpoint creates a class\nbreakpoint for record\n\nChange-Id: I850f48970095a74aab36fc4b817a2ff254839256\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/181096\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "d465cd927b053f3e1cd16f680dcfc8d75f13604d",
      "tree": "ba616752bf169682b891229b11e70793b2e5ab03",
      "parents": [
        "729d349fdde8d7da88531a31b2d29f340330efa9",
        "476c40081060040f56a6c6be1f2ca1d8f68f7e0f"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Tue Jun 08 11:37:43 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Tue Jun 08 11:37:43 2021 +0530"
      },
      "message": "Merge remote-tracking branch \u0027origin/master\u0027 into BETA_JAVA17\n\nChange-Id: I342418fe101a9385d390957f6dd213b2f4783936\n"
    },
    {
      "commit": "476c40081060040f56a6c6be1f2ca1d8f68f7e0f",
      "tree": "a4d9acc12e6614b43307fa539885920ebdd5c47b",
      "parents": [
        "a5ba003d16dbc4b6b8b8735c3f8bbb9b275f435a"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Thu Jun 03 18:59:38 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Mon Jun 07 23:17:58 2021 -0400"
      },
      "message": "Bug 573865 - [launch] renaming a JRE adds a trailing slash after the\nname in run configurations\n\nChange-Id: Ibb7fd00b5a1d5c0fd4a3fb13a44fc37c35b80d31\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/181347\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "a5ba003d16dbc4b6b8b8735c3f8bbb9b275f435a",
      "tree": "f1fc62447b99d097c8482fbe714212329330d80a",
      "parents": [
        "2405bb6f851e884215e2f2d2474efe7d06791d68"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Tue Jun 08 00:51:49 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Mon Jun 07 16:17:03 2021 -0400"
      },
      "message": "Bug 573618 - [16] Adding a line/method breakpoint creates a class\nbreakpoint for record\nplugin version update for 4.21\n\nChange-Id: I6658d8445ca134c3780475a1c0c73e9a08e4234e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/181540\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "2405bb6f851e884215e2f2d2474efe7d06791d68",
      "tree": "17392bb4fc37474784f7e83ae8039e7e02d912c6",
      "parents": [
        "7f11bf9c3183c006e83e2608efd3e5143320bbaf"
      ],
      "author": {
        "name": "Sravan Kumar Lakkimsetti",
        "email": "sravankumarl@in.ibm.com",
        "time": "Thu Jun 03 20:47:18 2021 +0530"
      },
      "committer": {
        "name": "Vikas Chandra",
        "email": "Vikas.Chandra@in.ibm.com",
        "time": "Fri Jun 04 02:22:07 2021 -0400"
      },
      "message": "Bug 573960 - POM and product version change for 4.21 release\n\nChange-Id: Ib0c0184bec5b35cdd927e699be9fd8e1d06671ce\nSigned-off-by: Sravan Kumar Lakkimsetti \u003csravankumarl@in.ibm.com\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/181384\nTested-by: Vikas Chandra \u003cVikas.Chandra@in.ibm.com\u003e\nReviewed-by: Vikas Chandra \u003cVikas.Chandra@in.ibm.com\u003e\n"
    },
    {
      "commit": "729d349fdde8d7da88531a31b2d29f340330efa9",
      "tree": "aea2d4c3defc544dffed3d42f9430959a0de946e",
      "parents": [
        "13d57b1703b6f755f2b3ca6e91cea020eabd0171",
        "7f11bf9c3183c006e83e2608efd3e5143320bbaf"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Thu Jun 03 11:20:22 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Thu Jun 03 11:20:22 2021 +0530"
      },
      "message": "Merge remote-tracking branch \u0027origin/master\u0027 into BETA_JAVA17\n\nChange-Id: If12ca693de9a022531cb4f4aafce2b4e428b567f\n"
    },
    {
      "commit": "7f11bf9c3183c006e83e2608efd3e5143320bbaf",
      "tree": "fa0a24a3fb7c1a5f2496e688444158f12a636138",
      "parents": [
        "cef2aa3f6dfe5cf75120c8bbddfd472b11868162"
      ],
      "author": {
        "name": "Gayan Perera",
        "email": "gayanper@gmail.com",
        "time": "Sat May 15 20:44:12 2021 +0200"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Mon May 17 03:48:30 2021 -0400"
      },
      "message": "Bug 573553 - Support for Hovering over deep chain on this reference\n\nPreviously only array length chain expressions are passed to evaluation\nengine which were on this object. Now all chain expression on this\nreference are passed to evaluation engine.\n\nChange-Id: I7e0257ccffd1a2304b27d833515f30e0a1ee5e17\nSigned-off-by: Gayan Perera \u003cgayanper@gmail.com\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/180634\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nTested-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "cef2aa3f6dfe5cf75120c8bbddfd472b11868162",
      "tree": "a6d9198cda350f49b1903fcc79e339ebd92621b4",
      "parents": [
        "70c808d2edbb4f2bae0d3f009318da5e5630ddbc"
      ],
      "author": {
        "name": "Gayan Perera",
        "email": "gayanper@gmail.com",
        "time": "Wed May 05 20:18:45 2021 +0200"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Sat May 15 13:57:59 2021 -0400"
      },
      "message": "Bug 573385 - Add support debug hovers on chained local variables objects\n\nExtend solution provided in Bug572629 to support local variables.\n\n\nChange-Id: Ib61b90b317849d6752ecfa70d159043312ae8738\nSigned-off-by: Gayan Perera \u003cgayanper@gmail.com\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/180255\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "13d57b1703b6f755f2b3ca6e91cea020eabd0171",
      "tree": "432cef6d544c9ece6ed9a6c4a5b514f341347023",
      "parents": [
        "6eabf8f4b773bb08f08ef2688e8e2a4c31ff0363"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Thu May 13 18:11:31 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Thu May 13 08:59:40 2021 -0400"
      },
      "message": "Bug 573510 - [17] Add Execution Environment for JavaSE-17\n\nChange-Id: I294d07c1917b1ccd878a348e1aa4caad6b4d2c00\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/180568\nTested-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    },
    {
      "commit": "70c808d2edbb4f2bae0d3f009318da5e5630ddbc",
      "tree": "3a73d5c16c0a565b8ef9e4b6d90d3d7dde599f04",
      "parents": [
        "7ea9156c640bdd44eaae09463c479ba068f6b03a"
      ],
      "author": {
        "name": "Gayan Perera",
        "email": "gayanper@gmail.com",
        "time": "Wed May 12 20:42:11 2021 +0200"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Thu May 13 08:23:16 2021 -0400"
      },
      "message": "Bug 547462 - Fix inconsistency in infix expression evaluation\n\nWhen evaluating a infix expression which contains extended operands,\nthen the number of no-op that are pushed are not stored in instructions\nwhen leaving the infix expression. This cause problem with instruction\norder when in situations where their is a prefix expression, where the\nprefix expression will be popped too late into instructions.\n\nThe fix solves this issue by storing/popping the no-op from stack equal\nto the number of extended operands in the infix expression before it\nleaves.\n\nChange-Id: I5451b68e34a00007736ec24ff421cd112b6f85fd\nSigned-off-by: Gayan Perera \u003cgayanper@gmail.com\u003e\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/180551\nReviewed-by: Jesper Moller \u003cjesper@selskabet.org\u003e\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\n"
    },
    {
      "commit": "7ea9156c640bdd44eaae09463c479ba068f6b03a",
      "tree": "cb613dba0f77ca4b21f20f78ff615390074b8fc2",
      "parents": [
        "d8a3b956ffa479f4bd928b09f1dce4df8b9f9a26"
      ],
      "author": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Thu May 13 13:11:32 2021 +0530"
      },
      "committer": {
        "name": "Sarika Sinha",
        "email": "sarika.sinha@in.ibm.com",
        "time": "Thu May 13 04:36:25 2021 -0400"
      },
      "message": "Bug 573517 - Move test suites to Java SE 11\n\nChange-Id: I51fa8e73d3f3a246ac699d63edcd75b161ce15bb\nReviewed-on: https://git.eclipse.org/r/c/jdt/eclipse.jdt.debug/+/180564\nTested-by: JDT Bot \u003cjdt-bot@eclipse.org\u003e\nReviewed-by: Sarika Sinha \u003csarika.sinha@in.ibm.com\u003e\n"
    }
  ],
  "next": "d8a3b956ffa479f4bd928b09f1dce4df8b9f9a26"
}
