)]}'
{
  "log": [
    {
      "commit": "63418f425a77cd004b7ad7a388f2876632dda17b",
      "tree": "158f4f22e109ccc2800a183e4c947d0155a9d3b8",
      "parents": [
        "73fe8f2d0539860152aa4e828d61afc5ebb1a046"
      ],
      "author": {
        "name": "abcpro1",
        "email": "abcpro11051@disroot.org",
        "time": "Wed Nov 09 20:35:09 2022 +0000"
      },
      "committer": {
        "name": "abcpro1",
        "email": "abcpro11051@disroot.org",
        "time": "Wed Nov 09 21:49:05 2022 +0000"
      },
      "message": "Jersey 2: Migrate exceptions\n\nProcessingException replaces ClientHandlerException.\nWebApplicationException replaces UniformInterfaceException; and\n\nWebApplicationException is only thrown when the response type *is not Response*\nand the response status code is not in the 2xx range.\n\nReferences:\nhttps://jakartaee.github.io/rest/apidocs/2.1.6/javax/ws/rs/client/SyncInvoker.html#method(java.lang.String)\nhttps://jakartaee.github.io/rest/apidocs/2.1.6/javax/ws/rs/client/SyncInvoker.html#method(java.lang.String,java.lang.Class)\n"
    },
    {
      "commit": "73fe8f2d0539860152aa4e828d61afc5ebb1a046",
      "tree": "49fe6d379796f61c7d7a37e6a3410d8465b09ec3",
      "parents": [
        "241bc4fa47eea248a9e5a15c5c609ea3c42ea543"
      ],
      "author": {
        "name": "abcpro1",
        "email": "abcpro11051@disroot.org",
        "time": "Tue Nov 08 19:56:52 2022 +0000"
      },
      "committer": {
        "name": "abcpro1",
        "email": "abcpro11051@disroot.org",
        "time": "Wed Nov 09 21:49:04 2022 +0000"
      },
      "message": "Jersey 2: Migrate requests made in unittests\n\nThis commit is a set of simple migrations for client requests made in\nunittests.\n\nThe javax.ws.rs.core.Response class is the default object returned by\nthe request methods: get, post, put, and delete; This class can be a replacement\nfor com.sun.jersey.api.client.ClientResponse from Jersey 1.x.\n\nWhy not use org.glassfish.jersey.client.ClientResponse as a replacement instead?\nWhen trying to return a org.glassfish.jersey.client.ClientResponse from the\nrequest methods, the Jersey implementation for some reason attempts to use\nthe Jackson ObjectMapper to convert the do the conversion which by default will fail\nwith an exception.\n\nOther simple migrations in this commit include replacing MultivaluedMap with\njavax.ws.rs.core.Form for form query parameters; And conforming to the new signature\nfor put() and post() methods a javax.ws.rs.client.Entity is always supplied.\n"
    },
    {
      "commit": "241bc4fa47eea248a9e5a15c5c609ea3c42ea543",
      "tree": "54adabf4f2e0c1d94a17622b47befb818d57bc7b",
      "parents": [
        "8a05e3764f67fa6b5cbd7d03e014337333c94482"
      ],
      "author": {
        "name": "abcpro1",
        "email": "abcpro11051@disroot.org",
        "time": "Mon Nov 07 20:13:57 2022 +0000"
      },
      "committer": {
        "name": "abcpro1",
        "email": "abcpro11051@disroot.org",
        "time": "Wed Nov 09 21:49:04 2022 +0000"
      },
      "message": "Jersey 2: Use WebTarget.request() where necessary\n\nWhen building a client request, the method WebTarget.request() must be used\nto make a builder that provides the following methods:\n\n- accept()\n- header()\n- method()\n- get()\n- post()\n- put()\n- delete()\n\nReference: https://jakartaee.github.io/rest/apidocs/2.1.6/javax/ws/rs/client/WebTarget.html#request()\n"
    },
    {
      "commit": "c0c2e302c7177284defa370185643a96ef2e770f",
      "tree": "2549a4f5dcff12a351e245e25e6bbf3212a36875",
      "parents": [
        "136ff59cad9d06376a7610a15c2a4003a304e855"
      ],
      "author": {
        "name": "abcpro1",
        "email": "abcpro11051@disroot.org",
        "time": "Mon Nov 07 18:30:52 2022 +0000"
      },
      "committer": {
        "name": "abcpro1",
        "email": "abcpro11051@disroot.org",
        "time": "Wed Nov 09 21:49:00 2022 +0000"
      },
      "message": "Jersey 2: Create a custom annotation to register resource filters\n\nThere is no direct equivalent of the @ResourceFilters annotation in Jersey 2.\nThe best alternative to define a custom annotation and use a DynamicFeature provider\nto interpret this annotation and register filters.\n\nWhy not define a annotation for each filter and use Jersey\u0027s @NameBinding mechanism?\n@ResourceFilters works differently than @NameBinding. A @ResourceFilters annotation\non method overrides the class level annotation; In this case, all filters\ndefined on the class level are discarded. This behaviour can\u0027t be achieved\nwith @NameBinding.\n\nReferences:\nhttps://eclipse-ee4j.github.io/jersey.github.io/documentation/2.37/filters-and-interceptors.html#d0e10127\nhttps://jakartaee.github.io/rest/apidocs/2.1.6/javax/ws/rs/container/DynamicFeature.html\n"
    },
    {
      "commit": "d912a2c4e9691cab30cbb7710603a81385de5f9c",
      "tree": "c9a48ead4279682656652a2ecb3e72c4ccba9270",
      "parents": [
        "0c746893e3db663ec62220cb9dcaef31a10ec7f3"
      ],
      "author": {
        "name": "abcpro1",
        "email": "abcpro11051@disroot.org",
        "time": "Mon Nov 07 17:10:50 2022 +0000"
      },
      "committer": {
        "name": "abcpro1",
        "email": "abcpro11051@disroot.org",
        "time": "Wed Nov 09 21:48:58 2022 +0000"
      },
      "message": "Jersey 2: Do simple migrations\n\nA few migrations are said to be simple since they have direct replacements\nin Jersey 2 from Jersey 1.\n\nThis list includes:\n\n- ServletContainer replaces SpringServlet.\n- MultivaluedHashMap replaces MultivaluedMapImpl.\n- ClientBuilder.newClient() replaces Client.create().\n- WebTarget replaces WebResource.\n- LoggingFeature replaces LoggingFilter\n\nAs a general reference: https://eclipse-ee4j.github.io/jersey.github.io/documentation/latest/migration.html#mig-1.x\n"
    },
    {
      "commit": "0c746893e3db663ec62220cb9dcaef31a10ec7f3",
      "tree": "d947d867732c04c4175d8f1437f2cdb556f4fd19",
      "parents": [
        "bfbfc431a553cc38c0664f9a95b7efd15c92cd9f"
      ],
      "author": {
        "name": "abcpro1",
        "email": "abcpro11051@disroot.org",
        "time": "Thu Nov 03 22:47:04 2022 +0000"
      },
      "committer": {
        "name": "abcpro1",
        "email": "abcpro11051@disroot.org",
        "time": "Wed Nov 09 21:48:58 2022 +0000"
      },
      "message": "Jersey 2: Upgrade pom.xml with java 11 and jersey 2.37\n\nPOM files for core, lite, and full are upgraded to java 11 and Jersey 2.37.\nA few dependencies have been renamed from Jersey 1 to Jersey 2.\n"
    },
    {
      "commit": "bfbfc431a553cc38c0664f9a95b7efd15c92cd9f",
      "tree": "d2cd81e1a0656825de680087c8a6100d3a500900",
      "parents": [
        "1f1c5ea07824d05342a00cb076dcce82b1c7fa98"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Oct 27 17:02:10 2022 +0000"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Nov 05 16:16:12 2022 +0100"
      },
      "message": "Bump maven-shade-plugin from 3.4.0 to 3.4.1 in /full\n\nBumps [maven-shade-plugin](https://github.com/apache/maven-shade-plugin) from 3.4.0 to 3.4.1.\n- [Release notes](https://github.com/apache/maven-shade-plugin/releases)\n- [Commits](https://github.com/apache/maven-shade-plugin/compare/maven-shade-plugin-3.4.0...maven-shade-plugin-3.4.1)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.plugins:maven-shade-plugin\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nChange-Id: I22e6553afec3715434fdbca053f8c7a4a21b7dec\n"
    },
    {
      "commit": "3de4c51e5660e514f0839f77e589ccd0edb318dd",
      "tree": "d623c84ec33133455eb9863ecc230eaea0cd0676",
      "parents": [
        "f9a6a9a0efb28e7185cf9404fe9c264d3adc07b7"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Oct 27 17:02:16 2022 +0000"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Nov 05 09:16:23 2022 +0100"
      },
      "message": "Bump oauth2-oidc-sdk from 9.43.1 to 10.1 in /full\n\nBumps [oauth2-oidc-sdk](https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions) from 9.43.1 to 10.1.\n- [Changelog](https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions/src/master/CHANGELOG.txt)\n- [Commits](https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions/branches/compare/10.1..9.43.1)\n\n---\nupdated-dependencies:\n- dependency-name: com.nimbusds:oauth2-oidc-sdk\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n\nCloses #464\n\nChange-Id: I4748a2ec605cbe04f4efb50c2dd7e5d633fbf569\n"
    },
    {
      "commit": "f6af9302573116cd64deb239f64694be09d39b8f",
      "tree": "96e0eb9feb42fdb46d7218233940bd6cd5b5df87",
      "parents": [
        "a2630eb1c11aa7eefedd0e31318c4f2a3e1e6162"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Nov 04 17:00:38 2022 +0000"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Nov 05 09:16:23 2022 +0100"
      },
      "message": "Bump hibernate.version from 5.6.12.Final to 5.6.14.Final in /full\n\nBumps `hibernate.version` from 5.6.12.Final to 5.6.14.Final.\n\nUpdates `hibernate-entitymanager` from 5.6.12.Final to 5.6.14.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.14/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.12...5.6.14)\n\nUpdates `hibernate-jpamodelgen` from 5.6.12.Final to 5.6.14.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.14/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.12...5.6.14)\n\nUpdates `hibernate-java8` from 5.6.12.Final to 5.6.14.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.14/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.12...5.6.14)\n\nUpdates `hibernate-c3p0` from 5.6.12.Final to 5.6.14.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.14/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.12...5.6.14)\n\n---\nupdated-dependencies:\n- dependency-name: org.hibernate:hibernate-entitymanager\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate:hibernate-jpamodelgen\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate:hibernate-java8\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate:hibernate-c3p0\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n\nCloses #468\n\nChange-Id: Ibbc6a63a6b70427a321186d960c4a5794a0b0c39\n"
    },
    {
      "commit": "a2630eb1c11aa7eefedd0e31318c4f2a3e1e6162",
      "tree": "66dbd989c24e201a7f794d6784b2a9fb1be10825",
      "parents": [
        "a4cfbb77c3d273754652a0136a1575cb9640e9b2"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Oct 14 17:01:24 2022 +0000"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed Oct 19 19:20:46 2022 +0200"
      },
      "message": "Bump nimbus-jose-jwt from 9.25.5 to 9.25.6 in /full\n\nBumps [nimbus-jose-jwt](https://bitbucket.org/connect2id/nimbus-jose-jwt) from 9.25.5 to 9.25.6.\n- [Changelog](https://bitbucket.org/connect2id/nimbus-jose-jwt/src/master/CHANGELOG.txt)\n- [Commits](https://bitbucket.org/connect2id/nimbus-jose-jwt/branches/compare/9.25.6..9.25.5)\n\n---\nupdated-dependencies:\n- dependency-name: com.nimbusds:nimbus-jose-jwt\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n\nCloses #457\n\nChange-Id: Ib1f60c65a9aff19ee5147dcf7d44b0dd0d1342ef\n"
    },
    {
      "commit": "1c7bbae52573445acb7714a7c59da2c982015cdc",
      "tree": "347fc433879284ef8a8c5675ce91508a776fbf4f",
      "parents": [
        "aa209072a25241e67bdc9d95b97907a0818a9159"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Oct 11 17:01:52 2022 +0000"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Oct 14 15:28:20 2022 +0200"
      },
      "message": "Bump nimbus-jose-jwt from 9.25.4 to 9.25.5 in /full\n\nBumps [nimbus-jose-jwt](https://bitbucket.org/connect2id/nimbus-jose-jwt) from 9.25.4 to 9.25.5.\n- [Changelog](https://bitbucket.org/connect2id/nimbus-jose-jwt/src/master/CHANGELOG.txt)\n- [Commits](https://bitbucket.org/connect2id/nimbus-jose-jwt/branches/compare/9.25.5..9.25.4)\n\n---\nupdated-dependencies:\n- dependency-name: com.nimbusds:nimbus-jose-jwt\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n\nCloses #455\n\nChange-Id: I09c9b4da2576e6d7f5f9878e83d33727a28f3353\n"
    },
    {
      "commit": "d8cc695514bb1444a9152d40390c60ff19537df8",
      "tree": "3b62a6152b284df395e7019c2e0e2777356a2ae6",
      "parents": [
        "93424333be4991120041960c745a7e35c2e0f814"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Sep 28 17:03:18 2022 +0000"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Sep 30 08:55:24 2022 +0200"
      },
      "message": "Bump nimbus-jose-jwt from 9.25.3 to 9.25.4 in /full\n\nBumps [nimbus-jose-jwt](https://bitbucket.org/connect2id/nimbus-jose-jwt) from 9.25.3 to 9.25.4.\n- [Changelog](https://bitbucket.org/connect2id/nimbus-jose-jwt/src/master/CHANGELOG.txt)\n- [Commits](https://bitbucket.org/connect2id/nimbus-jose-jwt/branches/compare/9.25.4..9.25.3)\n\n---\nupdated-dependencies:\n- dependency-name: com.nimbusds:nimbus-jose-jwt\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n\nCloses #450\n\nChange-Id: I54f74c74aac1f75a69824b83f770876606191b35\n"
    },
    {
      "commit": "5e19a781233927cb4b73eaef5c003e516e5cbeee",
      "tree": "7d5df4a16827319881ae0546ffb0ce05b4292382",
      "parents": [
        "0074013bdceecf6a221114268fb8ed5adbaf4f42"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Sep 29 17:04:17 2022 +0000"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Sep 30 08:55:23 2022 +0200"
      },
      "message": "Bump commons-text from 1.9 to 1.10.0 in /full\n\nBumps commons-text from 1.9 to 1.10.0.\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.commons:commons-text\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n\nCloses #453\n\nChange-Id: Ide86117bb290971c6068531d6496878511cf9f74\n"
    },
    {
      "commit": "ab69cdb0f3a8952352f1e7541e0968c58cc68d32",
      "tree": "bb6c481b3121e002289fef269a718af1f0f74b84",
      "parents": [
        "c23011b06951b1b1e7bde715f71c769c8889aa9c"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Sep 26 17:04:00 2022 +0000"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Sep 27 19:32:11 2022 +0200"
      },
      "message": "Bump nimbus-jose-jwt from 9.25.1 to 9.25.3 in /full\n\nBumps [nimbus-jose-jwt](https://bitbucket.org/connect2id/nimbus-jose-jwt) from 9.25.1 to 9.25.3.\n- [Changelog](https://bitbucket.org/connect2id/nimbus-jose-jwt/src/master/CHANGELOG.txt)\n- [Commits](https://bitbucket.org/connect2id/nimbus-jose-jwt/branches/compare/9.25.3..9.25.1)\n\n---\nupdated-dependencies:\n- dependency-name: com.nimbusds:nimbus-jose-jwt\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n\nCloses #446\n\nChange-Id: I8aa07e0226f90b23c0c5e15d64a78f7b6997d0d0\n"
    },
    {
      "commit": "4da3edd4f0e7b291ee889acc3b3cc587a8e83004",
      "tree": "a0aa271eda0de391b4e79b94f83656e9e6c9d787",
      "parents": [
        "f7946346957ea3602f4de54688cfdec5d74ed30a"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Sep 27 17:02:05 2022 +0000"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Sep 27 19:32:11 2022 +0200"
      },
      "message": "Bump hibernate.version from 5.6.11.Final to 5.6.12.Final in /full\n\nBumps `hibernate.version` from 5.6.11.Final to 5.6.12.Final.\n\nUpdates `hibernate-entitymanager` from 5.6.11.Final to 5.6.12.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.12/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.11...5.6.12)\n\nUpdates `hibernate-jpamodelgen` from 5.6.11.Final to 5.6.12.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.12/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.11...5.6.12)\n\nUpdates `hibernate-java8` from 5.6.11.Final to 5.6.12.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.12/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.11...5.6.12)\n\nUpdates `hibernate-c3p0` from 5.6.11.Final to 5.6.12.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.12/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.11...5.6.12)\n\n---\nupdated-dependencies:\n- dependency-name: org.hibernate:hibernate-entitymanager\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate:hibernate-jpamodelgen\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate:hibernate-java8\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate:hibernate-c3p0\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n\nCloses #449\n\nChange-Id: I9acaa01e16052a6854187c2db02cc022ce1eb6fb\n"
    },
    {
      "commit": "4c72262838cee1f98145668dd526e248003b5fd9",
      "tree": "f43a6a7db154722ce206db4e2327dc976416661c",
      "parents": [
        "3f9c6791f1c3032508b1c151fb4f31b09439009f"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Sep 20 17:43:24 2022 +0000"
      },
      "committer": {
        "name": "Akron",
        "email": "nils@diewald-online.de",
        "time": "Wed Sep 21 12:56:40 2022 +0200"
      },
      "message": "Bump nimbus-jose-jwt from 9.25 to 9.25.1 in /full (closes #442)\n\nBumps [nimbus-jose-jwt](https://bitbucket.org/connect2id/nimbus-jose-jwt) from 9.25 to 9.25.1.\n- [Changelog](https://bitbucket.org/connect2id/nimbus-jose-jwt/src/master/CHANGELOG.txt)\n- [Commits](https://bitbucket.org/connect2id/nimbus-jose-jwt/branches/compare/9.25.1..9.25)\n\n---\nupdated-dependencies:\n- dependency-name: com.nimbusds:nimbus-jose-jwt\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nChange-Id: I3d14d50f0a3bd3f9762af683b87e04ff34930658\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n"
    },
    {
      "commit": "07a33afbf3d3213caae3ed33c69ccdd5c794f607",
      "tree": "1331e123a1ecfac3eb9adceeb15594df6efacbfd",
      "parents": [
        "4b4e1a6228fd8af003a6555e203c599b0c89b25f"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Sep 09 17:01:33 2022 +0000"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu Sep 15 13:57:26 2022 +0200"
      },
      "message": "Bump oauth2-oidc-sdk from 9.2 to 9.43.1 in /full\n\nBumps [oauth2-oidc-sdk](https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions) from 9.2 to 9.43.1.\n- [Changelog](https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions/src/master/CHANGELOG.txt)\n- [Commits](https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions/branches/compare/9.43.1..9.2)\n\n---\nupdated-dependencies:\n- dependency-name: com.nimbusds:oauth2-oidc-sdk\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n\nCloses #431\n\nChange-Id: I377dab142bc91b2a8d4c9c8f88ad943ef7fb4bb4\n"
    },
    {
      "commit": "bf006dce0be95289dbc584e499f255f7b849cc3f",
      "tree": "5e14143bc34b10defd987371dd72e56d009ef234",
      "parents": [
        "66052cc24fa672042a93adf30d3fd8897f539087"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Sep 13 17:02:37 2022 +0000"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu Sep 15 13:57:26 2022 +0200"
      },
      "message": "Bump nimbus-jose-jwt from 9.24.3 to 9.25 in /full\n\nBumps [nimbus-jose-jwt](https://bitbucket.org/connect2id/nimbus-jose-jwt) from 9.24.3 to 9.25.\n- [Changelog](https://bitbucket.org/connect2id/nimbus-jose-jwt/src/master/CHANGELOG.txt)\n- [Commits](https://bitbucket.org/connect2id/nimbus-jose-jwt/branches/compare/9.25..9.24.3)\n\n---\nupdated-dependencies:\n- dependency-name: com.nimbusds:nimbus-jose-jwt\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n\nCloses #434\n\nChange-Id: I6c197b00a95156075a7bac05182f444cdd9a9d69\n"
    },
    {
      "commit": "095bb836983c1d05cbab32c710cda5fd33c305b3",
      "tree": "66063f8be9533792d1a3cda5909095c73343fb4b",
      "parents": [
        "92e0a40fbab5691dd3d53fab0f4a0bc4218bc427"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Sep 14 17:02:38 2022 +0000"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu Sep 15 13:57:26 2022 +0200"
      },
      "message": "Bump maven-shade-plugin from 3.3.0 to 3.4.0 in /full\n\nBumps [maven-shade-plugin](https://github.com/apache/maven-shade-plugin) from 3.3.0 to 3.4.0.\n- [Release notes](https://github.com/apache/maven-shade-plugin/releases)\n- [Commits](https://github.com/apache/maven-shade-plugin/compare/maven-shade-plugin-3.3.0...maven-shade-plugin-3.4.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.plugins:maven-shade-plugin\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n\nCloses #436\n\nChange-Id: I75aa427ea8a982972a9678153e1c2c53d2d927cb\n"
    },
    {
      "commit": "e5026aa45ed4841e82ef320953366b5aebef6cf0",
      "tree": "13a451f426c8461af07fe14418e5faa8851329ef",
      "parents": [
        "3a6f6715fcd8ad05aeb544ff1f53604590daf55d"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Feb 24 11:04:34 2021 +0000"
      },
      "committer": {
        "name": "Akron",
        "email": "nils@diewald-online.de",
        "time": "Thu Sep 08 13:52:06 2022 +0200"
      },
      "message": "Bump oauth2-oidc-sdk from 8.25 to 9.2 in /full (closes #151)\n\nBumps [oauth2-oidc-sdk](https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions) from 8.25 to 9.2.\n- [Changelog](https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions/src/master/CHANGELOG.txt)\n- [Commits](https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions/branches/compare/9.2..8.25)\n\nChange-Id: I144803b1790d5d33faab24fe1874c6fd1359f7ca\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n"
    },
    {
      "commit": "6e248d73531cb8939d486dd1be0d3fc49e2a798b",
      "tree": "41b335c668c420812ed590bc30c4fffadc8eabce",
      "parents": [
        "e8421c2e3c1d76908b5c78dc17b36bfab04383ac"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Sep 01 17:01:39 2022 +0000"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Sep 02 19:24:13 2022 +0200"
      },
      "message": "Bump unboundid-ldapsdk from 6.0.5 to 6.0.6 in /full\n\nBumps [unboundid-ldapsdk](https://github.com/pingidentity/ldapsdk) from 6.0.5 to 6.0.6.\n- [Release notes](https://github.com/pingidentity/ldapsdk/releases)\n- [Changelog](https://github.com/pingidentity/ldapsdk/blob/master/docs/release-notes.html)\n- [Commits](https://github.com/pingidentity/ldapsdk/compare/6.0.5...6.0.6)\n\n---\nupdated-dependencies:\n- dependency-name: com.unboundid:unboundid-ldapsdk\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n\nCloses #426\n\nChange-Id: Ia3820f3388bad17a55a174e815c9221a359b9809\n"
    },
    {
      "commit": "ad475fc60241479b7d547836bb02afa3227471e9",
      "tree": "29b83cf28a54a9c16b024a8a61813c9dab4c7b62",
      "parents": [
        "9afe06753fa6b1f6795b518f7167a5a5a76ab15d"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Aug 30 17:25:44 2022 +0000"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Aug 30 21:05:21 2022 +0200"
      },
      "message": "Bump nimbus-jose-jwt from 9.24.2 to 9.24.3 in /full\n\nBumps [nimbus-jose-jwt](https://bitbucket.org/connect2id/nimbus-jose-jwt) from 9.24.2 to 9.24.3.\n- [Changelog](https://bitbucket.org/connect2id/nimbus-jose-jwt/src/master/CHANGELOG.txt)\n- [Commits](https://bitbucket.org/connect2id/nimbus-jose-jwt/branches/compare/9.24.3..9.24.2)\n\n---\nupdated-dependencies:\n- dependency-name: com.nimbusds:nimbus-jose-jwt\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n\nCloses #422\n\nChange-Id: I6f598fd82fa326c27c8a5fd44d24ef3104ccf90f\n"
    },
    {
      "commit": "4f3215c7f9978886a88360f9cfa9209f7fabe78e",
      "tree": "8e53808771d18458131b9921fb46416f1c92a943",
      "parents": [
        "c60ca47408053af9f35ff0c8d4eac42d091331f2"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Aug 30 17:02:27 2022 +0000"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Tue Aug 30 19:22:52 2022 +0200"
      },
      "message": "Bump hibernate.version from 5.6.10.Final to 5.6.11.Final in /full\n\nBumps `hibernate.version` from 5.6.10.Final to 5.6.11.Final.\n\nUpdates `hibernate-entitymanager` from 5.6.10.Final to 5.6.11.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.11/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.10...5.6.11)\n\nUpdates `hibernate-jpamodelgen` from 5.6.10.Final to 5.6.11.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.11/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.10...5.6.11)\n\nUpdates `hibernate-java8` from 5.6.10.Final to 5.6.11.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.11/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.10...5.6.11)\n\nUpdates `hibernate-c3p0` from 5.6.10.Final to 5.6.11.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.11/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.10...5.6.11)\n\n---\nupdated-dependencies:\n- dependency-name: org.hibernate:hibernate-entitymanager\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate:hibernate-jpamodelgen\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate:hibernate-java8\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate:hibernate-c3p0\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n\nCloses #424\n\nChange-Id: If31dbd03dcd603508c38baed93bc56a4d661dfae\n"
    },
    {
      "commit": "c60ca47408053af9f35ff0c8d4eac42d091331f2",
      "tree": "461ecca13547ffd30c6e142b5d7a8767276368ac",
      "parents": [
        "149a39755ca9a4bf7241894e7d1b123e51da51b1"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jul 25 17:02:41 2022 +0000"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Aug 26 17:09:20 2022 +0200"
      },
      "message": "Bump mysql-connector-java from 8.0.29 to 8.0.30 in /full\n\nBumps [mysql-connector-java](https://github.com/mysql/mysql-connector-j) from 8.0.29 to 8.0.30.\n- [Release notes](https://github.com/mysql/mysql-connector-j/releases)\n- [Changelog](https://github.com/mysql/mysql-connector-j/blob/release/8.0/CHANGES)\n- [Commits](https://github.com/mysql/mysql-connector-j/commits)\n\n---\nupdated-dependencies:\n- dependency-name: mysql:mysql-connector-java\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n\nCloses #401\n\nChange-Id: Ic2f78f4500e0daa8e464c9d7480b834b56e0dcb5\n"
    },
    {
      "commit": "09ddf9013b6ec28d223f0cf23fb44188ec3169ca",
      "tree": "c2e1e193c5d251246e51c78b74f906c7e43ecf2e",
      "parents": [
        "f77c587cbe6f10679b2c6dd19344c565f1dae5f3"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Aug 19 17:02:16 2022 +0000"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Aug 26 17:09:20 2022 +0200"
      },
      "message": "Bump nimbus-jose-jwt from 9.23 to 9.24.2 in /full\n\nBumps [nimbus-jose-jwt](https://bitbucket.org/connect2id/nimbus-jose-jwt) from 9.23 to 9.24.2.\n- [Changelog](https://bitbucket.org/connect2id/nimbus-jose-jwt/src/master/CHANGELOG.txt)\n- [Commits](https://bitbucket.org/connect2id/nimbus-jose-jwt/branches/compare/9.24.2..9.23)\n\n---\nupdated-dependencies:\n- dependency-name: com.nimbusds:nimbus-jose-jwt\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n\nCloses #414\n\nChange-Id: Id1bb6ce993d1bdb8061895010af5bd3d521739f9\n"
    },
    {
      "commit": "4e4853e3aefa24ee9cfb3281fd9fb14a8bed46e1",
      "tree": "0a70faefb9d8509d0340c7ca9c5315594556b193",
      "parents": [
        "bef035612baf5aacc15389b4e73269da778cc78d"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Aug 22 17:01:54 2022 +0000"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri Aug 26 17:09:20 2022 +0200"
      },
      "message": "Bump mockserver-netty from 5.13.2 to 5.14.0 in /full\n\nBumps [mockserver-netty](https://github.com/jamesdbloom/mockservice) from 5.13.2 to 5.14.0.\n- [Release notes](https://github.com/jamesdbloom/mockservice/releases)\n- [Changelog](https://github.com/mock-server/mockserver/blob/master/changelog.md)\n- [Commits](https://github.com/jamesdbloom/mockservice/compare/mockserver-5.13.2...mockserver-5.14.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.mock-server:mockserver-netty\n  dependency-type: direct:development\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n\nCloses #418\n\nChange-Id: I0685e12e1660a57ff5fb706bf6e59f3ba44ecf80\n"
    },
    {
      "commit": "27af2cc725196e9adfd370a7613916d3abba6997",
      "tree": "0e9125c5b124d1624a4b03ab3fc96436b04ed8f2",
      "parents": [
        "c6d240f72c15a772f17b8b3e45099b3825dd2cb8"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon May 30 17:01:51 2022 +0000"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu Jul 14 08:26:28 2022 +0200"
      },
      "message": "Bump nimbus-jose-jwt from 9.22 to 9.23 in /full\n\nBumps [nimbus-jose-jwt](https://bitbucket.org/connect2id/nimbus-jose-jwt) from 9.22 to 9.23.\n- [Changelog](https://bitbucket.org/connect2id/nimbus-jose-jwt/src/master/CHANGELOG.txt)\n- [Commits](https://bitbucket.org/connect2id/nimbus-jose-jwt/branches/compare/9.23..9.22)\n\n---\nupdated-dependencies:\n- dependency-name: com.nimbusds:nimbus-jose-jwt\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n\nCloses #388\n\nChange-Id: Ic12166aea303344f3eb41f3bd17728936cc2883e\n"
    },
    {
      "commit": "cdd4efcb9f7127615c522bb23d6501e7410de477",
      "tree": "c4b21ea83dea7f6450d671c6976c07426a3289d3",
      "parents": [
        "0e62a9525fdf2139e7819a5e78127df523970301"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jul 07 17:04:14 2022 +0000"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu Jul 14 08:26:28 2022 +0200"
      },
      "message": "Bump hibernate.version from 5.6.9.Final to 5.6.10.Final in /full\n\nBumps `hibernate.version` from 5.6.9.Final to 5.6.10.Final.\n\nUpdates `hibernate-entitymanager` from 5.6.9.Final to 5.6.10.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.10/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.9...5.6.10)\n\nUpdates `hibernate-jpamodelgen` from 5.6.9.Final to 5.6.10.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.10/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.9...5.6.10)\n\nUpdates `hibernate-java8` from 5.6.9.Final to 5.6.10.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.10/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.9...5.6.10)\n\nUpdates `hibernate-c3p0` from 5.6.9.Final to 5.6.10.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.10/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.9...5.6.10)\n\n---\nupdated-dependencies:\n- dependency-name: org.hibernate:hibernate-entitymanager\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate:hibernate-jpamodelgen\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate:hibernate-java8\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate:hibernate-c3p0\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n\nCloses #397\n\nChange-Id: I9669dc9d341083edf7144b518c9832fc39e145e0\n"
    },
    {
      "commit": "4ff862a74dd0dbe63248e7488390e55227769621",
      "tree": "7c89a012aba9b1b1a0edfdc84bad90416224c52c",
      "parents": [
        "3181b8d223c65616541d996c9b2fc8e5c89d6830"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Fri Jun 03 12:40:21 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Fri Jun 03 15:08:20 2022 +0200"
      },
      "message": "Fixed admin clean token API and restrict plugins to confidential only.\n\nChange-Id: Ied9db0db51a013a1b8b28899c64a7dc74ec64611\n"
    },
    {
      "commit": "3181b8d223c65616541d996c9b2fc8e5c89d6830",
      "tree": "75d6a5727d9beaa96d4ad5278eeff67331594030",
      "parents": [
        "4dee07aee5ca027aa2c4663a04bb89d61406d75a"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Tue May 31 11:51:47 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Fri Jun 03 13:50:37 2022 +0200"
      },
      "message": "Implemented initial super client registration for user authentication.\n\nChange-Id: I60a7396bef8c2f9b2c2e8bf1cb6e0d5018c79408\n"
    },
    {
      "commit": "4dee07aee5ca027aa2c4663a04bb89d61406d75a",
      "tree": "c2e1d411bbc19b1c6ead6a8fbdf19d519f61d532",
      "parents": [
        "d4841561404123fabf3b5ec0fbe7b8541a3a2f95"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Fri May 27 11:45:28 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Fri Jun 03 12:51:58 2022 +0200"
      },
      "message": "Implemented searching option using a network endpoint.\n\nChange-Id: I1a35d482f0df49fc1acaef9aca027eb2fa551401\n"
    },
    {
      "commit": "d4841561404123fabf3b5ec0fbe7b8541a3a2f95",
      "tree": "67a9c4e3240677c504bf677e412e9372ecccbbbe",
      "parents": [
        "7d7e25e5d4051cf8f4345e522ac699d4116194a6"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed Jun 01 12:24:47 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed Jun 01 13:22:37 2022 +0200"
      },
      "message": "Added new APIs: list user-installed plugins and uninstall plugin.\n\nMoved install and list plugin APIs to PluginController and updated their\nservice paths under /plugins.\n\nChange-Id: I592408665672d52e2479671b97de5ba49e9a9c5a\n"
    },
    {
      "commit": "7d7e25e5d4051cf8f4345e522ac699d4116194a6",
      "tree": "960f23d07ada3a0a96eb6b639dc4b5bd0fc2806d",
      "parents": [
        "590acf68e670ee033434fadce950dac5c8a93a8c"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Fri May 27 08:41:25 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Fri May 27 08:44:29 2022 +0200"
      },
      "message": "Added maximum limit to custom refresh token expiry\n\nChange-Id: Ie92d181b1941df867bb5377c2f2f6bf61ed56825\n"
    },
    {
      "commit": "590acf68e670ee033434fadce950dac5c8a93a8c",
      "tree": "7f432bb4ed44a7f59ddfb1b1a319701b5869bbac",
      "parents": [
        "79f01446818c67a9b38636113f87dc564da1becd"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Fri May 06 10:44:56 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Fri May 27 08:07:25 2022 +0200"
      },
      "message": "Updated redirect URI error message for coherence.\n\nChange-Id: Ie942a39b282152ccb66c12e5cedb4eaa3ce73493\n"
    },
    {
      "commit": "79f01446818c67a9b38636113f87dc564da1becd",
      "tree": "f977418c1037b07346ddddcdceec1a7bb0304d95",
      "parents": [
        "68ccf1e3ddcaadb66667ccbbd8d7b08459d16bd5"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed May 04 12:03:47 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed May 25 15:48:10 2022 +0200"
      },
      "message": "Deprecated UserClientDto and uses ClientinfoDto instead.\n\nChange-Id: If9a146284a1f0ca9237e35a0ad36dfbb4ddefcda\n"
    },
    {
      "commit": "68ccf1e3ddcaadb66667ccbbd8d7b08459d16bd5",
      "tree": "d2223ccfd7abb37f2605990d12a4e687f39d6a35",
      "parents": [
        "d5527326ac46b450110ac4ecea062a48a26eed8c"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed May 04 09:59:54 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed May 25 15:12:00 2022 +0200"
      },
      "message": "Handled super client id in plugin installation\n\nChange-Id: Ice83e06c0dd8c8742f2fc60eeb765b12777833ed\n"
    },
    {
      "commit": "d5527326ac46b450110ac4ecea062a48a26eed8c",
      "tree": "7efb096a22432a7bc6f243e30649a423e91e622e",
      "parents": [
        "7da2390c02791a5650aaf2f36de8113f2cb3f191"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Tue May 03 07:52:54 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed May 25 15:05:39 2022 +0200"
      },
      "message": "Handled redundant plugin installation\n\nChange-Id: Idbc585f8e063be8021eef95353c0143cac694e39\n"
    },
    {
      "commit": "7da2390c02791a5650aaf2f36de8113f2cb3f191",
      "tree": "c7b589f5bedbbbc5320a991eefb954c2e834d039",
      "parents": [
        "b1edd2285d36e9dc7565e89ee51b945843c568ad"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Mon May 02 08:38:45 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed May 25 14:38:24 2022 +0200"
      },
      "message": "Added a new API: install plugin\n\nChange-Id: I3f8cb4935487cee9b2fa83a0c4d6fa15a53d3b29\n"
    },
    {
      "commit": "b1edd2285d36e9dc7565e89ee51b945843c568ad",
      "tree": "c571db0e551fb1d81c43ed0970aaeeb8fc8468af",
      "parents": [
        "977fabe98c9383544af967a71cc0413979a66fed"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed May 25 11:45:35 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed May 25 14:30:58 2022 +0200"
      },
      "message": "Added installed_plugins table\n\nChange-Id: I835eb9cea1d98fdfa33d0c783c44d6b69e50609e\n"
    },
    {
      "commit": "977fabe98c9383544af967a71cc0413979a66fed",
      "tree": "2de31a5d1e4cdc72b7042866460a4c729316e1ba",
      "parents": [
        "9436ebeb8ccc07606c4c8baebf3a88c0af3e6248"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Thu Apr 28 09:23:47 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed May 25 14:24:21 2022 +0200"
      },
      "message": "Handled user-defined refresh token expiry.\n\nAdded in client info and list API responses.\n\nChange-Id: I309fc1856ccbab4e3b61e6e1953d573dee3b409b\n"
    },
    {
      "commit": "9436ebeb8ccc07606c4c8baebf3a88c0af3e6248",
      "tree": "aaba63145a2f7f6edf92fd4c3b6ba9519d2f8347",
      "parents": [
        "e20a280f1065ce2675c4303e34af8d05deec50bd"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Fri Apr 22 11:48:37 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed May 25 13:45:56 2022 +0200"
      },
      "message": "Added redirect URI validation in authorization request (addressed #374)\n\nChange-Id: I7e3bbc9cdfcf85fa897e0425cdc6bdb3eeda94f4\n"
    },
    {
      "commit": "e20a280f1065ce2675c4303e34af8d05deec50bd",
      "tree": "baf5b3d543e60800ff6f974a226595840d1777d3",
      "parents": [
        "2a49805042f0a1dded61a0cdcb554e90a2b9b32d"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Thu Apr 21 12:37:38 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed May 25 13:37:09 2022 +0200"
      },
      "message": "Added a new API: list plugins (e.g. for marketplace)\n\nChange-Id: Iad8ea0f18b8219e6e4074cdcf8ead54732f3f041\n"
    },
    {
      "commit": "2a49805042f0a1dded61a0cdcb554e90a2b9b32d",
      "tree": "d564651b0d66b989ca1097ff29bd4181c9d29ea2",
      "parents": [
        "f9b99b0abb47d2d00555fbb1a9ed68799baf7d93"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed May 25 11:14:24 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed May 25 13:35:21 2022 +0200"
      },
      "message": "Bump Kustvakt version to 0.68\n\nChange-Id: Ie4ef91793c356b0ccc9b872411943c3d9f1d9074\n"
    },
    {
      "commit": "f9b99b0abb47d2d00555fbb1a9ed68799baf7d93",
      "tree": "0bf69a24f13476122e9c13fe935a77d4017f54c1",
      "parents": [
        "ef1883fe451e28e1f5045368dbabf8ae3d49a1e0"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed May 25 13:30:04 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed May 25 13:30:47 2022 +0200"
      },
      "message": "Updated ldap.config path in the kustvakt-test.conf\n\nChange-Id: I9c10623210f9704e1c5a6f629e6ad395fde1bd2e\n"
    },
    {
      "commit": "ef1883fe451e28e1f5045368dbabf8ae3d49a1e0",
      "tree": "c8d4725d5aaacfbd30c150c6ea200b66f5c49a9b",
      "parents": [
        "0034a0c3178815bab42b6e5df46776e3b41ddc1b"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed May 25 12:24:12 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed May 25 12:24:12 2022 +0200"
      },
      "message": "Fixed null client_id.\n\nChange-Id: I4d1ac3609381c53e475e33237f4e5dc940ce34e0\n"
    },
    {
      "commit": "0034a0c3178815bab42b6e5df46776e3b41ddc1b",
      "tree": "535f7d274572dcda75de227d15959e89296600fa",
      "parents": [
        "641ea63daeb8405d72862ee44038883f90864387"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Tue May 17 10:37:41 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed May 25 10:13:27 2022 +0200"
      },
      "message": "Handled null parameters in authorization requests\n\nChange-Id: I064684c5ade9ebc011513dca7656a08427e0f277\n"
    },
    {
      "commit": "641ea63daeb8405d72862ee44038883f90864387",
      "tree": "8c59ec52ec93b5cb9a1ad2169ff26a3ed2c60132",
      "parents": [
        "f1b0bf1c9bb5e7b65e01730de49073902c710c2d"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Tue May 17 10:27:59 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed May 25 10:03:22 2022 +0200"
      },
      "message": "Implemented mapping of LDAP username to email.\n\nChange-Id: Ifb1d2969c6dfafe768b99524de8303277184a94d\n"
    },
    {
      "commit": "f1b0bf1c9bb5e7b65e01730de49073902c710c2d",
      "tree": "bd82b5d5d9568dcbe07825a70facbcb0d6e6f1f0",
      "parents": [
        "d97dcaaf068731a0e92b01d87f2718adf218bb55"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Tue May 24 15:07:35 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Tue May 24 15:07:35 2022 +0200"
      },
      "message": "Bump Kustvakt version to 0.67.1\n\nChange-Id: I66614acf249d431f0b0a1fbc8a0e91b1269f40c3\n"
    },
    {
      "commit": "62e1e67c0f92c278d9f499230163c3143ea60683",
      "tree": "75f26d393a117d81e58007d832e5e2c399ee6d27",
      "parents": [
        "f0e1dbf694e7184868a11b43a4af85667bbffdfa"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon May 16 17:02:40 2022 +0000"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Tue May 24 09:14:49 2022 +0200"
      },
      "message": "Bump hibernate.version from 5.6.8.Final to 5.6.9.Final in /full\n\nBumps `hibernate.version` from 5.6.8.Final to 5.6.9.Final.\n\nUpdates `hibernate-entitymanager` from 5.6.8.Final to 5.6.9.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.9/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.8...5.6.9)\n\nUpdates `hibernate-jpamodelgen` from 5.6.8.Final to 5.6.9.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.9/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.8...5.6.9)\n\nUpdates `hibernate-java8` from 5.6.8.Final to 5.6.9.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.9/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.8...5.6.9)\n\nUpdates `hibernate-c3p0` from 5.6.8.Final to 5.6.9.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.9/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.8...5.6.9)\n\n---\nupdated-dependencies:\n- dependency-name: org.hibernate:hibernate-entitymanager\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate:hibernate-jpamodelgen\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate:hibernate-java8\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate:hibernate-c3p0\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n\nCloses #383\n\nChange-Id: I956e259dd9915f23c12ea23b0a9f42b9ab2dccd2\n"
    },
    {
      "commit": "b9d1f3cb940c79f2476d72aa4ae48589935945a6",
      "tree": "fb0e1c55acba37bbdafcf8f1a7b5c63ee4680b11",
      "parents": [
        "d9e5cda475c644b571f8eb55f593f53cc98230f5"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Wed May 11 16:06:49 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Tue May 17 10:18:27 2022 +0200"
      },
      "message": "Bump Kustvakt version.\n\nChange-Id: Iabdf24dbea40a7e123aada25169961312a9b1db7\n"
    },
    {
      "commit": "d9e5cda475c644b571f8eb55f593f53cc98230f5",
      "tree": "8a2d6b7d8985af6d1b4bef644b2714f737033039",
      "parents": [
        "7cb321306a7eea766ba77fd3baa2d0017e8a2ecc"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed May 11 12:03:29 2022 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat May 14 15:56:40 2022 +0200"
      },
      "message": "Changed the SQL script updating oauth2_client table.\n\nChange-Id: Ieafc953f892ca69ceb27719bb8155c582b4a9733\n"
    },
    {
      "commit": "7cb321306a7eea766ba77fd3baa2d0017e8a2ecc",
      "tree": "68e5e65b01aee773483e5142e74f16986df81cbc",
      "parents": [
        "e5bbc12fc3c3edfae1877d9624d7785d92b4b1ed"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon May 09 06:25:47 2022 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat May 14 15:56:40 2022 +0200"
      },
      "message": "Re-introduce additional filters for authorisation and user status\n\nauthFilter, userNotBlockedFilter\n\nChange-Id: I04fed94a5b1e9de7f00c8d5dd3351e3c6a24b075\n"
    },
    {
      "commit": "e5bbc12fc3c3edfae1877d9624d7785d92b4b1ed",
      "tree": "0903c0baf0276a768f0745ef78133f0af15e2009",
      "parents": [
        "9c22bbd979a5009197950e2b64f60bbc6907d4e3"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat May 07 17:00:36 2022 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat May 14 15:56:40 2022 +0200"
      },
      "message": "LdapAuth3: Test all combinations of 3 alternative login names and 2 pws\n\nChange-Id: Ie8f6f2fc0d180ac894e2c22e6d40531d9269608e\n"
    },
    {
      "commit": "9c22bbd979a5009197950e2b64f60bbc6907d4e3",
      "tree": "a2cc1ca98b5ab051a28c36e9e60a5d81f0c67e31",
      "parents": [
        "30925d8af8acfd3586446cbae9da11130e844884"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sun May 08 11:17:26 2022 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat May 14 15:56:40 2022 +0200"
      },
      "message": "Embedded LDAP server: Improve README.md and examples\n\nChange-Id: Ia62b059960fab78d0150058bb24008273d9df2f9\n"
    },
    {
      "commit": "30925d8af8acfd3586446cbae9da11130e844884",
      "tree": "20119802fc7b9cf5a80edf6f8f421561d006bf84",
      "parents": [
        "9a1188e33fe7f3226efae5437c7798dceffffb79"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Fri May 06 15:33:52 2022 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat May 14 15:56:40 2022 +0200"
      },
      "message": "Embedded LDAP server LdapAuth3: support hashed passwords (sha1, sha-256)\n\nNote that none of the currently supported hash are safe against\nbrute force attacks.\n\nIf ldapFilter property does not contain any occurrence of \"${password}\",\nthe user DN found via the filter expression will be authenticated\nvia a regular LDAP bind operation, using the entered password. In this\ncase, with embedded LDAP server, but probably also with others, hashed\npasswords are supported and make sense.\n\nChange-Id: I725832a2faa484623edcebeeeb727b23b6186de2\n"
    },
    {
      "commit": "9a1188e33fe7f3226efae5437c7798dceffffb79",
      "tree": "6183d4e1001e5eb958da7f50b3209e49c74fe1b3",
      "parents": [
        "75e78286b497fd9e2d892863aa658d1d1479523d"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Thu May 05 23:26:14 2022 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat May 14 15:56:38 2022 +0200"
      },
      "message": "LdapAuth3: factor out configuration class\n\nincluding the renaming of some configuration properties\n\nChange-Id: I0268c88a0bb7a3255debf045beab3faa71e9dce2\n"
    },
    {
      "commit": "75e78286b497fd9e2d892863aa658d1d1479523d",
      "tree": "19ae8bd7e3391afa4f3ee8242f4bc9b2de3539d3",
      "parents": [
        "392f478443ca35eed52b1f7bcc92e8a02d1f00a1"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon May 02 20:39:20 2022 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat May 14 15:55:36 2022 +0200"
      },
      "message": "Bring back function to get email attribute for/from user ID\n\nResolves https://github.com/KorAP/Kustvakt/issues/12\n\nChange-Id: I74eb3d1e93b7b406fc86847025c516898f1b07bc\n"
    },
    {
      "commit": "392f478443ca35eed52b1f7bcc92e8a02d1f00a1",
      "tree": "a19e0c36256cb019c1e98469347af31390456721",
      "parents": [
        "9d59959ae999536f94895dc398bb827040027bf4"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Mon May 02 13:23:18 2022 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat May 14 15:54:36 2022 +0200"
      },
      "message": "Rename ldap .properties to .conf\n\nChange-Id: I8a6a49fa5c8ae1e03c9f699d22825a767b8041ea\n"
    },
    {
      "commit": "9d59959ae999536f94895dc398bb827040027bf4",
      "tree": "031ebb9a6d55d0cb18d67e091ce53342e794d8f7",
      "parents": [
        "1e388b44b7f2125d166e1f919451ce6f650803e4"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sun May 01 16:29:18 2022 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat May 14 15:53:37 2022 +0200"
      },
      "message": "Allow configuring additional ssl cipher suites for ldaps connections\n\nLDAP configuration are often out of our scopes...\n\nChange-Id: Id9cbce2e3de719e515b92c35a31e0bd4aa10d563\n"
    },
    {
      "commit": "1e388b44b7f2125d166e1f919451ce6f650803e4",
      "tree": "155318dbfc9274119bed1bd01bc8d78082ae1bd4",
      "parents": [
        "0a3786747f9f5a8dd9b269280302cb552c03f02e"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Apr 30 18:37:03 2022 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat May 14 15:53:32 2022 +0200"
      },
      "message": "Automatically start embedded LDAP server if configured\n\nAutomatically start on first login attempt, if\nuseEmbeddedServer\u003dtrue in ldap.conf\n\nChange-Id: Id81a4d23a4e205d05545b22a5655ebd5eb25599b\n"
    },
    {
      "commit": "0a3786747f9f5a8dd9b269280302cb552c03f02e",
      "tree": "1d769fc094ee1a0dc8932f054ab77bf5ad17f4e7",
      "parents": [
        "3466c1eff56dbcc5fc2085d76a50a78f8956b415"
      ],
      "author": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat Apr 30 09:35:27 2022 +0200"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sat May 14 15:33:35 2022 +0200"
      },
      "message": "Commonize \u0026 simplify LDAP and LDAPS auth\n\nThis makes it easy for further instances and projects\noutside the IDS to use Kustvakt-full with their own LDAP.\n\nChange-Id: I710f50079348d6cff9fd33376aebda33bc9f408e\n"
    },
    {
      "commit": "c73b7e28ea599e02ee10e7cfe28ab9eb1d0d7757",
      "tree": "0b31178d1a0bade2515ab6760af8ab60a772bda6",
      "parents": [
        "db38f535ab74c74f40b6b643b7c47b02b215e81b"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Apr 22 17:01:40 2022 +0000"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sun May 08 14:52:26 2022 +0200"
      },
      "message": "Bump nimbus-jose-jwt from 9.21 to 9.22 in /full\n\nBumps [nimbus-jose-jwt](https://bitbucket.org/connect2id/nimbus-jose-jwt) from 9.21 to 9.22.\n- [Changelog](https://bitbucket.org/connect2id/nimbus-jose-jwt/src/master/CHANGELOG.txt)\n- [Commits](https://bitbucket.org/connect2id/nimbus-jose-jwt/branches/compare/9.22..9.21)\n\n---\nupdated-dependencies:\n- dependency-name: com.nimbusds:nimbus-jose-jwt\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n\nCloses #375\n\nChange-Id: I0e6b791a3f8e2e8c9d8feddc199926cfc0a05015\n"
    },
    {
      "commit": "db38f535ab74c74f40b6b643b7c47b02b215e81b",
      "tree": "e5ba49729da507a929c5c4813da4c19e6d56f13e",
      "parents": [
        "cad02eadfec7a5dd6dbc7df6199e72177d33ac69"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Apr 25 17:02:12 2022 +0000"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sun May 08 14:52:26 2022 +0200"
      },
      "message": "Bump mysql-connector-java from 8.0.28 to 8.0.29 in /full\n\nBumps [mysql-connector-java](https://github.com/mysql/mysql-connector-j) from 8.0.28 to 8.0.29.\n- [Release notes](https://github.com/mysql/mysql-connector-j/releases)\n- [Changelog](https://github.com/mysql/mysql-connector-j/blob/release/8.0/CHANGES)\n- [Commits](https://github.com/mysql/mysql-connector-j/commits)\n\n---\nupdated-dependencies:\n- dependency-name: mysql:mysql-connector-java\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n\nCloses #376\n\nChange-Id: I8c2194fcaa292f6fa3111c353c43532b705dc864\n"
    },
    {
      "commit": "295aee2dc52eb4259b132dfa4009fecc61399b39",
      "tree": "5dd609c7d900358a67893a32e6030b8e212426a8",
      "parents": [
        "ffb895089f101a7ec5484052ca0253558f8feb6f"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri May 06 17:01:50 2022 +0000"
      },
      "committer": {
        "name": "Marc Kupietz",
        "email": "kupietz@ids-mannheim.de",
        "time": "Sun May 08 14:52:26 2022 +0200"
      },
      "message": "Bump unboundid-ldapsdk from 6.0.4 to 6.0.5 in /full\n\nBumps [unboundid-ldapsdk](https://github.com/pingidentity/ldapsdk) from 6.0.4 to 6.0.5.\n- [Release notes](https://github.com/pingidentity/ldapsdk/releases)\n- [Changelog](https://github.com/pingidentity/ldapsdk/blob/master/docs/release-notes.html)\n- [Commits](https://github.com/pingidentity/ldapsdk/commits)\n\n---\nupdated-dependencies:\n- dependency-name: com.unboundid:unboundid-ldapsdk\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n\nCloses #378\n\nChange-Id: If1f40d39b2602bfefca653b38037b0424f871fb8\n"
    },
    {
      "commit": "ffb895089f101a7ec5484052ca0253558f8feb6f",
      "tree": "27fcb94f41e0e874834e7d14b98f086732428c79",
      "parents": [
        "9c38367cc0928dcd384c7914096ac9aa03df7be8"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed Apr 20 12:03:16 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Fri Apr 22 08:47:07 2022 +0200"
      },
      "message": "Updated authorization error response.\n\nIncluded error and error description in the client redirect URI except\nfor missing or invalid client id or redirect URI.\n\nChange-Id: Ic35c5dcaf056f6ba761d80246c9ca64a7cf2016a\n"
    },
    {
      "commit": "62ba678891b94232940f90e7730a1860e6182f9a",
      "tree": "b8f7c42f636c1540a088cd09b7aaa56aec883678",
      "parents": [
        "f74c5a1846a5e0871c3133d7ae56cd906e7b4432"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Apr 18 17:02:23 2022 +0000"
      },
      "committer": {
        "name": "Eliza Margaretha",
        "email": "margaretha@users.noreply.github.com",
        "time": "Wed Apr 20 12:29:14 2022 +0200"
      },
      "message": "Bump lombok from 1.18.22 to 1.18.24 in /full\n\nBumps [lombok](https://github.com/projectlombok/lombok) from 1.18.22 to 1.18.24.\n- [Release notes](https://github.com/projectlombok/lombok/releases)\n- [Changelog](https://github.com/projectlombok/lombok/blob/master/doc/changelog.markdown)\n- [Commits](https://github.com/projectlombok/lombok/compare/v1.18.22...v1.18.24)\n\n---\nupdated-dependencies:\n- dependency-name: org.projectlombok:lombok\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "77f25d865efacb8152c2933a77cb29643c5f9fa3",
      "tree": "2ef15831bee0c8ff535c648ba6056c0c930d5070",
      "parents": [
        "9dfa863340a74c4871fa5b81fbf0b9ca2601a8f5"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Apr 13 17:02:08 2022 +0000"
      },
      "committer": {
        "name": "Eliza Margaretha",
        "email": "margaretha@users.noreply.github.com",
        "time": "Wed Apr 20 12:20:50 2022 +0200"
      },
      "message": "Bump hibernate.version from 5.6.7.Final to 5.6.8.Final in /full\n\nBumps `hibernate.version` from 5.6.7.Final to 5.6.8.Final.\n\nUpdates `hibernate-entitymanager` from 5.6.7.Final to 5.6.8.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.8/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.7...5.6.8)\n\nUpdates `hibernate-jpamodelgen` from 5.6.7.Final to 5.6.8.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.8/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.7...5.6.8)\n\nUpdates `hibernate-java8` from 5.6.7.Final to 5.6.8.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.8/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.7...5.6.8)\n\nUpdates `hibernate-c3p0` from 5.6.7.Final to 5.6.8.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.8/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.7...5.6.8)\n\n---\nupdated-dependencies:\n- dependency-name: org.hibernate:hibernate-entitymanager\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate:hibernate-jpamodelgen\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate:hibernate-java8\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate:hibernate-c3p0\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "9dfa863340a74c4871fa5b81fbf0b9ca2601a8f5",
      "tree": "9dda5b1f170c45d8cb3923e169f4026019dd7bfb",
      "parents": [
        "9b19c396c8f3f6cee21130f646903b4b17395ebc"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed Apr 13 10:29:58 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed Apr 20 12:13:54 2022 +0200"
      },
      "message": "Updated OAuth2Client list API\n\nAdded redirect_uri, registration_date, permitted, and source to\nOAuth2UserClientDto\n\nChange-Id: Id2614f1c2d7a408ddc7cda1ccfa9ed038a89adf8\n"
    },
    {
      "commit": "d67b427911d024fafad85a0ca6c05bb67fe34d97",
      "tree": "047e0e72dad912132bf0e08ea9c0e34d759831de",
      "parents": [
        "d7163120e8d25ff4c72bc8e6646e8e23e8596c00"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Mon Apr 11 17:34:19 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed Apr 13 08:58:26 2022 +0200"
      },
      "message": "Added authorization request with GET and deprecated that with POST.\n\nChange-Id: I1a26048c0691bb87ccb05edb06fc99be0e5205c5\n"
    },
    {
      "commit": "d7163120e8d25ff4c72bc8e6646e8e23e8596c00",
      "tree": "f77124f6f0270f739b1a148a485c6456ec859136",
      "parents": [
        "3ef1b811ade22d95b148116a36db04de7a86d81c"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Mon Apr 11 09:42:41 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Mon Apr 11 17:32:49 2022 +0200"
      },
      "message": "Added columns to the oauth2_client table and updated client registration\n\nChange-Id: Ic16b41859fdda464fc2315ae40b1ddded9c45dca\n"
    },
    {
      "commit": "3ef1b811ade22d95b148116a36db04de7a86d81c",
      "tree": "a5e57338c92c3e46bd3331fc395fc7862ad25273",
      "parents": [
        "3f520f3edf9b79cba371e2e953edc8cd4a487da4"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed Apr 06 11:32:54 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Fri Apr 08 11:38:13 2022 +0200"
      },
      "message": "Added redirect_uri to client info API.\n\nChange-Id: I8a2b343174fc4dab9192c796ef537ddd1ba6112f\n"
    },
    {
      "commit": "3f520f3edf9b79cba371e2e953edc8cd4a487da4",
      "tree": "5bed5147ae44803e69a597d51632ced1ccf1e95e",
      "parents": [
        "6346a18b7cd4247af775fbd8b834a880b19d7209"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Apr 05 17:02:38 2022 +0000"
      },
      "committer": {
        "name": "Eliza Margaretha",
        "email": "margaretha@users.noreply.github.com",
        "time": "Wed Apr 06 09:05:52 2022 +0200"
      },
      "message": "Bump mockserver-netty from 5.13.0 to 5.13.2 in /full\n\nBumps [mockserver-netty](https://github.com/jamesdbloom/mockservice) from 5.13.0 to 5.13.2.\n- [Release notes](https://github.com/jamesdbloom/mockservice/releases)\n- [Changelog](https://github.com/mock-server/mockserver/blob/master/changelog.md)\n- [Commits](https://github.com/jamesdbloom/mockservice/compare/mockserver-5.13.0...mockserver-5.13.2)\n\n---\nupdated-dependencies:\n- dependency-name: org.mock-server:mockserver-netty\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "a4db399208a560ed590c98885d26898575c69d1a",
      "tree": "66f71962b93c07a3c78724c93c8e7fbec4e5ce36",
      "parents": [
        "9645ab0a79b4ee92ab1aab7cb89733eaeb726c5a"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Thu Mar 31 12:22:17 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Thu Mar 31 12:22:17 2022 +0200"
      },
      "message": "Fixed the test suite.\n\nChange-Id: Ibf708bddf4b0154585aa8324c46c4d28e4a64000\n"
    },
    {
      "commit": "9645ab0a79b4ee92ab1aab7cb89733eaeb726c5a",
      "tree": "88b284ecf27ad8b8a29149bfbf24f83ac13322b5",
      "parents": [
        "43a1deba7345b756bb25a07b0ad64962fea07d20"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Thu Mar 31 11:33:03 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Thu Mar 31 11:37:39 2022 +0200"
      },
      "message": "Updated query and user-group name pattern.\n\nChange-Id: Ia18a1b9cc3c90a162108369aba37df7518e455da\n"
    },
    {
      "commit": "43a1deba7345b756bb25a07b0ad64962fea07d20",
      "tree": "3899a269a846c5a8b395a78526b68bcf921fc8d1",
      "parents": [
        "9c339417909e5b2c1d226c66f1409acfb7b34677"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed Mar 30 08:40:49 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed Mar 30 08:40:49 2022 +0200"
      },
      "message": "Bump Kustvakt versions.\n\nChange-Id: Ic1705186f6e0011c7acbd63044e3c9e7fc8910dc\n"
    },
    {
      "commit": "9c339417909e5b2c1d226c66f1409acfb7b34677",
      "tree": "f29a9adf0142e13997f4f97577dd87a605c53566",
      "parents": [
        "b53e89d280aa96551f9fea4d6b2bbef30e5bc6a4"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Mar 29 17:01:34 2022 +0000"
      },
      "committer": {
        "name": "Eliza Margaretha",
        "email": "margaretha@users.noreply.github.com",
        "time": "Wed Mar 30 08:17:17 2022 +0200"
      },
      "message": "Bump maven-shade-plugin from 3.2.4 to 3.3.0 in /full\n\nBumps [maven-shade-plugin](https://github.com/apache/maven-shade-plugin) from 3.2.4 to 3.3.0.\n- [Release notes](https://github.com/apache/maven-shade-plugin/releases)\n- [Commits](https://github.com/apache/maven-shade-plugin/compare/maven-shade-plugin-3.2.4...maven-shade-plugin-3.3.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.plugins:maven-shade-plugin\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "e28cdd94545494f19d5620ed841cf76ac1e18ca4",
      "tree": "e6e0833328f68fcb949c91a88e8247613221bddf",
      "parents": [
        "74110b732f35e83308e286f1708612322df93c5b"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Tue Mar 29 09:42:08 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Tue Mar 29 09:42:08 2022 +0200"
      },
      "message": "Updated and moved updateClientPrivilege API to OAuth2AdminController\n\nChange-Id: I43dbf4dd2fd867cbdc91544d87333ab484bb48f7\n"
    },
    {
      "commit": "74110b732f35e83308e286f1708612322df93c5b",
      "tree": "d6ccd5080ccb3ef64fb1db9d5bd8c99f7c9b303a",
      "parents": [
        "78f9080246a25fd684e5e350481552c60bcbc3f2"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Mon Mar 28 12:16:51 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Mon Mar 28 12:16:51 2022 +0200"
      },
      "message": "Removed unused admin API: clear access token cache.\n\nChange-Id: Iab9628c94711d6a11a465f224ca43983483f6c8c\n"
    },
    {
      "commit": "78f9080246a25fd684e5e350481552c60bcbc3f2",
      "tree": "f025e87575376f2fe555bd957319a810bc2b2459",
      "parents": [
        "ef79284efaa90e812226bd033b3f7a944d0ce9ef"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Mon Mar 28 08:23:20 2022 +0200"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Mon Mar 28 12:16:20 2022 +0200"
      },
      "message": "Updated admin filter and uses it for the closing index reader API.\n\nChange-Id: I7f7ad4dbb97ae3cfd282fba4a952471878867dcb\n"
    },
    {
      "commit": "85d6ce484f8ce3460ad91af9153b0e2982044ca4",
      "tree": "6e54adf7ea277ee73dee1ada52157d828abda58a",
      "parents": [
        "93407f27a685807dfaaf2383d9304d213d495628"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Mar 17 17:01:48 2022 +0000"
      },
      "committer": {
        "name": "Eliza Margaretha",
        "email": "margaretha@users.noreply.github.com",
        "time": "Fri Mar 25 11:43:45 2022 +0100"
      },
      "message": "Bump mockserver-netty from 5.12.0 to 5.13.0 in /full\n\nBumps [mockserver-netty](https://github.com/jamesdbloom/mockservice) from 5.12.0 to 5.13.0.\n- [Release notes](https://github.com/jamesdbloom/mockservice/releases)\n- [Changelog](https://github.com/mock-server/mockserver/blob/master/changelog.md)\n- [Commits](https://github.com/jamesdbloom/mockservice/compare/mockserver-5.12.0...mockserver-5.13.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.mock-server:mockserver-netty\n  dependency-type: direct:development\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "93407f27a685807dfaaf2383d9304d213d495628",
      "tree": "537bb013332535e9f4592da41c00d20fb202f924",
      "parents": [
        "6c8924ebdf7e1238b65c4ffe98611450c759a285"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Mar 17 17:01:42 2022 +0000"
      },
      "committer": {
        "name": "Eliza Margaretha",
        "email": "margaretha@users.noreply.github.com",
        "time": "Fri Mar 25 11:43:37 2022 +0100"
      },
      "message": "Bump hibernate.version from 5.6.5.Final to 5.6.7.Final in /full\n\nBumps `hibernate.version` from 5.6.5.Final to 5.6.7.Final.\n\nUpdates `hibernate-entitymanager` from 5.6.5.Final to 5.6.7.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.7/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.5...5.6.7)\n\nUpdates `hibernate-jpamodelgen` from 5.6.5.Final to 5.6.7.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.7/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.5...5.6.7)\n\nUpdates `hibernate-java8` from 5.6.5.Final to 5.6.7.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.7/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.5...5.6.7)\n\nUpdates `hibernate-c3p0` from 5.6.5.Final to 5.6.7.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.7/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.5...5.6.7)\n\n---\nupdated-dependencies:\n- dependency-name: org.hibernate:hibernate-entitymanager\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate:hibernate-jpamodelgen\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate:hibernate-java8\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate:hibernate-c3p0\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "7aa4a73f9de561438c2c4e22bcc83f1645e08a46",
      "tree": "d626d27d0c76aa9c641a30177b14aa107c8df286",
      "parents": [
        "525045ea860e8b3e6c5967eb72947b77557c11e9"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Mar 16 17:04:00 2022 +0000"
      },
      "committer": {
        "name": "Eliza Margaretha",
        "email": "margaretha@users.noreply.github.com",
        "time": "Fri Mar 25 11:43:02 2022 +0100"
      },
      "message": "Bump unboundid-ldapsdk from 6.0.3 to 6.0.4 in /full\n\nBumps [unboundid-ldapsdk](https://github.com/pingidentity/ldapsdk) from 6.0.3 to 6.0.4.\n- [Release notes](https://github.com/pingidentity/ldapsdk/releases)\n- [Changelog](https://github.com/pingidentity/ldapsdk/blob/master/docs/release-notes.html)\n- [Commits](https://github.com/pingidentity/ldapsdk/compare/6.0.3...6.0.4)\n\n---\nupdated-dependencies:\n- dependency-name: com.unboundid:unboundid-ldapsdk\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "525045ea860e8b3e6c5967eb72947b77557c11e9",
      "tree": "e7d68b191915d4e3b1db4e3da504ce3ffd86e8cd",
      "parents": [
        "b19cfa2c82ad8efc99bfc33a13e63812c2769ce1"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Fri Mar 18 16:22:43 2022 +0100"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Fri Mar 18 16:22:43 2022 +0100"
      },
      "message": "Added an admin API to delete expired/revoked access and refresh tokens.\n\nChange-Id: Ie939a6aa26edf2747981943e5f40daa3485be461\n"
    },
    {
      "commit": "b19cfa2c82ad8efc99bfc33a13e63812c2769ce1",
      "tree": "871fd7979666455e5d74609f8c201dce1c828ee3",
      "parents": [
        "29c48aff8b7b8dc52c7ea4739f6f72e3a8d21736"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Thu Mar 17 12:19:26 2022 +0100"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Fri Mar 18 12:16:48 2022 +0100"
      },
      "message": "Updated admin filter by using admin token and role checks.\n\nChange-Id: Icf61f635debba98dcf5515e543b294441d1bbaaa\n"
    },
    {
      "commit": "21a8386ceba29f130cffaff1751ae16d054b5e97",
      "tree": "20b65fb3f67edfce9671100e7fd32c8d2d3c7ede",
      "parents": [
        "fbaccdc07ecf5382cf9e4525ce25919b40f6d8b6"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Mon Mar 07 16:56:08 2022 +0100"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Wed Mar 16 08:35:37 2022 +0100"
      },
      "message": "Added more parameter checks and OAuth2Client web-service tests.\n\nChange-Id: I310ec386cc12c527d1b051e104e5ea95777189f4\n"
    },
    {
      "commit": "3457f65faed6de8ff29c06ecf1f5d0e0ca0fc885",
      "tree": "f59dee0af2746fc5df469090bdfc437142ba8fdb",
      "parents": [
        "95ef149688dc29b442c2a1a73c12779599937e85"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Mar 11 17:02:03 2022 +0000"
      },
      "committer": {
        "name": "Eliza Margaretha",
        "email": "margaretha@users.noreply.github.com",
        "time": "Tue Mar 15 10:28:13 2022 +0100"
      },
      "message": "Bump maven-compiler-plugin from 3.10.0 to 3.10.1 in /full\n\nBumps [maven-compiler-plugin](https://github.com/apache/maven-compiler-plugin) from 3.10.0 to 3.10.1.\n- [Release notes](https://github.com/apache/maven-compiler-plugin/releases)\n- [Commits](https://github.com/apache/maven-compiler-plugin/compare/maven-compiler-plugin-3.10.0...maven-compiler-plugin-3.10.1)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.plugins:maven-compiler-plugin\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "95ef149688dc29b442c2a1a73c12779599937e85",
      "tree": "5b99c90646fd99b9c8e8b74625afae53559917e0",
      "parents": [
        "6bbbf1da1bd15bce02ce40d3578d2bce0cd83ca9"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Mar 07 17:02:36 2022 +0000"
      },
      "committer": {
        "name": "Eliza Margaretha",
        "email": "margaretha@users.noreply.github.com",
        "time": "Tue Mar 15 10:28:00 2022 +0100"
      },
      "message": "Bump nimbus-jose-jwt from 9.20 to 9.21 in /full\n\nBumps [nimbus-jose-jwt](https://bitbucket.org/connect2id/nimbus-jose-jwt) from 9.20 to 9.21.\n- [Changelog](https://bitbucket.org/connect2id/nimbus-jose-jwt/src/master/CHANGELOG.txt)\n- [Commits](https://bitbucket.org/connect2id/nimbus-jose-jwt/branches/compare/9.21..9.20)\n\n---\nupdated-dependencies:\n- dependency-name: com.nimbusds:nimbus-jose-jwt\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "6bbbf1da1bd15bce02ce40d3578d2bce0cd83ca9",
      "tree": "28a43bd95791850d46d7c4e277e66c66ad41ad4f",
      "parents": [
        "d66a683ed410c003843dbbafca4680c947f55f90"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Thu Mar 03 08:48:05 2022 +0100"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Thu Mar 03 08:48:47 2022 +0100"
      },
      "message": "Added foreign keys to the DB tables of access and refresh token scopes.\n\nChange-Id: I39d1e606d5f6890bfccba918df8f44877c938079\n"
    },
    {
      "commit": "d66a683ed410c003843dbbafca4680c947f55f90",
      "tree": "57558f75ec366f9d56539a6ba4f6892f9f511e6e",
      "parents": [
        "ad7de72fe6092587fc171fe547a8581e7e34f534"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Thu Mar 03 08:47:13 2022 +0100"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Thu Mar 03 08:48:47 2022 +0100"
      },
      "message": "Removed VCLoader.\n\nChange-Id: Ieb93cc690d37c14d2f3bff95706863a959a1f5b8\n"
    },
    {
      "commit": "ad7de72fe6092587fc171fe547a8581e7e34f534",
      "tree": "a3b044c1269cd2f86112e4aa41ee9a0d765a9903",
      "parents": [
        "d94516cadb3359141f22512c9949d1d4484d6767"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Tue Mar 01 09:23:14 2022 +0100"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Tue Mar 01 09:23:14 2022 +0100"
      },
      "message": "Restricts the field retrieval web-service to admin only.\n\nChange-Id: I2a623b5cc070f846cc900a511bf7688b4c9fb323\n"
    },
    {
      "commit": "d94516cadb3359141f22512c9949d1d4484d6767",
      "tree": "dd7687a96dd1a0776ed5140b8081a852a468a80c",
      "parents": [
        "371751cbbce83e03c73328696a66d6f06f483734"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Feb 21 17:02:01 2022 +0000"
      },
      "committer": {
        "name": "Eliza Margaretha",
        "email": "margaretha@users.noreply.github.com",
        "time": "Tue Feb 22 10:25:07 2022 +0100"
      },
      "message": "Bump nimbus-jose-jwt from 9.18 to 9.20 in /full\n\nBumps [nimbus-jose-jwt](https://bitbucket.org/connect2id/nimbus-jose-jwt) from 9.18 to 9.20.\n- [Changelog](https://bitbucket.org/connect2id/nimbus-jose-jwt/src/master/CHANGELOG.txt)\n- [Commits](https://bitbucket.org/connect2id/nimbus-jose-jwt/branches/compare/9.20..9.18)\n\n---\nupdated-dependencies:\n- dependency-name: com.nimbusds:nimbus-jose-jwt\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "2ce895684a9f57642cdc88ee1261d8dadcb25d4f",
      "tree": "f6eca25a48bb7e1f6d87d111a096c7d9489e0c31",
      "parents": [
        "a30c3808c3b99ca27c042594644aeef7e5980c94"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Feb 14 17:02:28 2022 +0000"
      },
      "committer": {
        "name": "Eliza Margaretha",
        "email": "margaretha@users.noreply.github.com",
        "time": "Tue Feb 22 10:24:36 2022 +0100"
      },
      "message": "Bump maven-compiler-plugin from 3.9.0 to 3.10.0 in /full\n\nBumps [maven-compiler-plugin](https://github.com/apache/maven-compiler-plugin) from 3.9.0 to 3.10.0.\n- [Release notes](https://github.com/apache/maven-compiler-plugin/releases)\n- [Commits](https://github.com/apache/maven-compiler-plugin/compare/maven-compiler-plugin-3.9.0...maven-compiler-plugin-3.10.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.plugins:maven-compiler-plugin\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "580e26e4ef85bec67a560a935ceb29a3d7bf0de9",
      "tree": "7ed3d3a19521c5486b501e1933d0d63764c62f4d",
      "parents": [
        "1bb1dcd85ccabc15d7756ac24f31839e917aaf34"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Feb 14 17:02:22 2022 +0000"
      },
      "committer": {
        "name": "Eliza Margaretha",
        "email": "margaretha@users.noreply.github.com",
        "time": "Tue Feb 22 10:24:02 2022 +0100"
      },
      "message": "Bump mockserver-netty from 5.11.2 to 5.12.0 in /full\n\nBumps [mockserver-netty](https://github.com/jamesdbloom/mockservice) from 5.11.2 to 5.12.0.\n- [Release notes](https://github.com/jamesdbloom/mockservice/releases)\n- [Changelog](https://github.com/mock-server/mockserver/blob/master/changelog.md)\n- [Commits](https://github.com/jamesdbloom/mockservice/compare/mockserver-5.11.2...mockserver-5.12.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.mock-server:mockserver-netty\n  dependency-type: direct:development\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "7cc601bd8465708547261a8a4b4e875a29fc3806",
      "tree": "eeb012a0ae0e3dfa0e9a0150fd8f7b496a5da441",
      "parents": [
        "96531f6eb6a486d0e6bddf8058757b3727c39e09"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jan 31 17:01:55 2022 +0000"
      },
      "committer": {
        "name": "Eliza Margaretha",
        "email": "margaretha@users.noreply.github.com",
        "time": "Mon Feb 07 11:00:15 2022 +0100"
      },
      "message": "Bump nimbus-jose-jwt from 9.16-preview.1 to 9.18 in /full\n\nBumps [nimbus-jose-jwt](https://bitbucket.org/connect2id/nimbus-jose-jwt) from 9.16-preview.1 to 9.18.\n- [Changelog](https://bitbucket.org/connect2id/nimbus-jose-jwt/src/master/CHANGELOG.txt)\n- [Commits](https://bitbucket.org/connect2id/nimbus-jose-jwt/commits/tag/9.18)\n\n---\nupdated-dependencies:\n- dependency-name: com.nimbusds:nimbus-jose-jwt\n  dependency-type: direct:production\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "96531f6eb6a486d0e6bddf8058757b3727c39e09",
      "tree": "96d3a54ece22612098778cecf22166c186ecbf4d",
      "parents": [
        "5897be269585e6c4404e81ab5b46fd946cfad26a"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jan 25 17:02:01 2022 +0000"
      },
      "committer": {
        "name": "Eliza Margaretha",
        "email": "margaretha@users.noreply.github.com",
        "time": "Mon Feb 07 11:00:03 2022 +0100"
      },
      "message": "Bump hibernate.version from 5.6.4.Final to 5.6.5.Final in /full\n\nBumps `hibernate.version` from 5.6.4.Final to 5.6.5.Final.\n\nUpdates `hibernate-entitymanager` from 5.6.4.Final to 5.6.5.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.5/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.4...5.6.5)\n\nUpdates `hibernate-jpamodelgen` from 5.6.4.Final to 5.6.5.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.5/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.4...5.6.5)\n\nUpdates `hibernate-java8` from 5.6.4.Final to 5.6.5.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.5/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.4...5.6.5)\n\nUpdates `hibernate-c3p0` from 5.6.4.Final to 5.6.5.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/5.6.5/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/5.6.4...5.6.5)\n\n---\nupdated-dependencies:\n- dependency-name: org.hibernate:hibernate-entitymanager\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate:hibernate-jpamodelgen\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate:hibernate-java8\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate:hibernate-c3p0\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "0b47db0cb5252ec3dc41a42275a51188e9571662",
      "tree": "fdd8f9d695931c593db6c97435edf3ecb2238ad4",
      "parents": [
        "73147ac2a04c4513080a2bce3578a381c0ea0db7",
        "28f14af459ea72496f81996b168b6104eb948bb1"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Fri Feb 04 08:50:45 2022 +0100"
      },
      "committer": {
        "name": "Gerrit Code Review",
        "email": "gerrit2@korap.ids-mannheim.de",
        "time": "Fri Feb 04 08:50:45 2022 +0100"
      },
      "message": "Merge \"Bump Kustvakt to version 0.65.1.\""
    },
    {
      "commit": "28f14af459ea72496f81996b168b6104eb948bb1",
      "tree": "95a3b69fea2617bbea020bb8bd9079ab64f081e0",
      "parents": [
        "923c207940fc46606cda217c2f3df0b8e0bf47eb"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Fri Feb 04 08:50:25 2022 +0100"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Fri Feb 04 08:50:25 2022 +0100"
      },
      "message": "Bump Kustvakt to version 0.65.1.\n\nChange-Id: Ic5c4e93da6e4cc73c3acd01239ae0a1ac4a96b0e\n"
    },
    {
      "commit": "73147ac2a04c4513080a2bce3578a381c0ea0db7",
      "tree": "8dbfe3166c73cafa02180d96113fab65e9c69eba",
      "parents": [
        "553f7e86e4f0e87e5ef67e90f91d48b2dbfa9f49",
        "923c207940fc46606cda217c2f3df0b8e0bf47eb"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Fri Feb 04 08:48:04 2022 +0100"
      },
      "committer": {
        "name": "Gerrit Code Review",
        "email": "gerrit2@korap.ids-mannheim.de",
        "time": "Fri Feb 04 08:48:04 2022 +0100"
      },
      "message": "Merge \"Added an API retrieving fields of a virtual corpus.\""
    },
    {
      "commit": "923c207940fc46606cda217c2f3df0b8e0bf47eb",
      "tree": "1255b56e6daa55548abcd4a44144d4d95e21f79c",
      "parents": [
        "9c6493ed3569fc5288f895bcdd12e3faab642f80"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Mon Jan 31 14:45:47 2022 +0100"
      },
      "committer": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Thu Feb 03 11:25:48 2022 +0100"
      },
      "message": "Added an API retrieving fields of a virtual corpus.\n\nChange-Id: I577e29bae1b3112ccb16a2d6b2c65d06695198c0\n"
    },
    {
      "commit": "553f7e86e4f0e87e5ef67e90f91d48b2dbfa9f49",
      "tree": "de692431515f0e0f11a42d9e9077ebb70b7e9ee4",
      "parents": [
        "ab0865a93c4b4f8b2638438ac784dc132fbfb65a",
        "9c6493ed3569fc5288f895bcdd12e3faab642f80"
      ],
      "author": {
        "name": "margaretha",
        "email": "margaretha@ids-mannheim.de",
        "time": "Fri Jan 28 12:49:27 2022 +0100"
      },
      "committer": {
        "name": "Gerrit Code Review",
        "email": "gerrit2@korap.ids-mannheim.de",
        "time": "Fri Jan 28 12:49:27 2022 +0100"
      },
      "message": "Merge \"Added show-tokens option to the search API.\""
    }
  ],
  "next": "9c6493ed3569fc5288f895bcdd12e3faab642f80"
}
