)]}'
{
  "log": [
    {
      "commit": "7c47cb84102a0cebbea7988e3787709861fa3e5e",
      "tree": "e83d9ccccde10911aad41ab35137bbd89b30dba3",
      "parents": [
        "4b1f769a3f809caae4133e10f3913fa90481e08a"
      ],
      "author": {
        "name": "Michael Polenchuk",
        "email": "mpolenchuk@mirantis.com",
        "time": "Mon Dec 24 17:00:30 2018 +0400"
      },
      "committer": {
        "name": "Vasyl Saienko",
        "email": "vsaienko@mirantis.com",
        "time": "Mon Apr 08 13:01:46 2019 +0300"
      },
      "message": "Handle environment variables\n\nManage rabbitmq-env config file that overrides the\ndefaults built in to the RabbitMQ startup scripts.\n\nChange-Id: I1524ef715600c7b350ad981b15de31d9583f8268\nCloses-Bug: PROD-26132\n"
    },
    {
      "commit": "8115f0f6e828f899c9c0c3cf40c9e36e5183835f",
      "tree": "b437f2578e957f4718a4644a49a22fbf15be469e",
      "parents": [
        "20801b4eefe1c05a7ef773d02a2ffc1c5472f597"
      ],
      "author": {
        "name": "Michael Polenchuk",
        "email": "mpolenchuk@mirantis.com",
        "time": "Wed May 30 21:27:45 2018 +0400"
      },
      "committer": {
        "name": "Michael Polenchuk",
        "email": "mpolenchuk@mirantis.com",
        "time": "Thu May 31 17:05:29 2018 +0400"
      },
      "message": "Bring in optional runas user for enabling plugins\n\nChange-Id: I4410b73b497ff35fd5afc309a5372f152cdd4f9d\n"
    },
    {
      "commit": "dc4c1b178602692478ead137440ac3e585c1a4f3",
      "tree": "dd56722ca04035860877e39645eda71e1ff810fd",
      "parents": [
        "9cedd38eb7623bfd4c2a749ced3696f1ce72aaf6"
      ],
      "author": {
        "name": "Jakub Josef",
        "email": "jakub.josef@gmail.com",
        "time": "Thu Feb 08 13:22:19 2018 +0100"
      },
      "committer": {
        "name": "Jakub Josef",
        "email": "jakub.josef@gmail.com",
        "time": "Thu Feb 08 13:22:19 2018 +0100"
      },
      "message": "Fixed shebang kernel limitation with virtualenv during test run (https://github.com/pypa/virtualenv/issues/596)\n\nChange-Id: I8eecc16fee7a44846f871e62e56178b591d43595\n"
    },
    {
      "commit": "351facfd137ef3d286e4ab0629815dc3b10ae52f",
      "tree": "64a8bf6f3dc142fc386d40a32878c7adb7539830",
      "parents": [
        "b3b65c2fe1a6fd882097187c8655c4be3c9a5d22"
      ],
      "author": {
        "name": "Jakub Josef",
        "email": "jakub.josef@gmail.com",
        "time": "Fri Dec 15 16:58:30 2017 +0100"
      },
      "committer": {
        "name": "Jakub Josef",
        "email": "jakub.josef@gmail.com",
        "time": "Fri Dec 15 17:34:11 2017 +0100"
      },
      "message": "Fixed typo in run_tests.sh file\n\nChange-Id: I96b2d9f0063eaa866b397833e13b42fcadde80b0\n"
    },
    {
      "commit": "51bac9fd1f6b5e23cc93a218bbfbd2708d73ac33",
      "tree": "a1a8103cb9a5f71677a8a696851213864365c095",
      "parents": [
        "03706199a445758653460c50b6c9b0cdc2f4d8b2"
      ],
      "author": {
        "name": "Martin Polreich",
        "email": "polreichmartin@gmail.com",
        "time": "Fri Oct 27 15:43:09 2017 +0200"
      },
      "committer": {
        "name": "Martin Polreich",
        "email": "polreichmartin@gmail.com",
        "time": "Mon Oct 30 16:31:19 2017 +0100"
      },
      "message": "Add plugins to test pillars and enable services testing\n\nChange-Id: I25bed145c6a03cd5c134a5e33a090bffb695a69c\n"
    },
    {
      "commit": "f8db4a2e992f9f7ae5217c923e044d4b6672f43b",
      "tree": "760392cf4a534f94c11415b82b9faf7713a2ec02",
      "parents": [
        "b88c84c842b593f8aa34c8fa5595e5bc93944b17"
      ],
      "author": {
        "name": "Kirill Bespalov",
        "email": "kbespalov@mirantis.com",
        "time": "Fri Aug 11 00:02:57 2017 +0300"
      },
      "committer": {
        "name": "Kirill Bespalov",
        "email": "kbespalov@mirantis.com",
        "time": "Fri Sep 01 13:14:45 2017 +0000"
      },
      "message": "[tls] Enforce right file permissions for certs/keys\n\nIf no rabbitmq-server package installed, then salt.minion.cert\nstate set as owner of the generated certs/keys files the root:root\nbecause of there is no rabbitmq user at this moment.\n\nSo, rabbitmq-server fails during files reading after installation.\n\nSteps to reproduce:\n\n1. Enable RabbitMQ TLS in your reclass model\n\n  classes:\n   - service.rabbitmq.server.ssl\n   - system.salt.minion.cert.rabbitmq_server\n\n2.  Generate certificates and keys using the following state before\nrabbitmq state applying:\n\n  salt -I \u0027rabbitmq:server\u0027 state.sls salt.minion.cert\n\n3. Apply rabbitmq server salt state:\n\n salt -I \u0027rabbitmq:server\u0027 state.sls rabbitmq.server\n\nExpected result:\n\nDuring rabbitmq server state applying the file permission will be set\nin properly way.\n\nActual result:\n\nFile permission of generated keys and certs is root:root\n\n\nChange-Id: I80b4432210c19edc4364405d3729d14860e54047\nPROD-14372"
    },
    {
      "commit": "41ea7f4dd59def811aa9a4f478bbc0c2fbdcfb20",
      "tree": "9b77e13f5725247817601eade3dfaad6638884db",
      "parents": [
        "e2fb66fca1a3489729df47618cd4e7c67e67acfa"
      ],
      "author": {
        "name": "Martin819",
        "email": "polreichmartin@gmail.com",
        "time": "Thu Mar 16 16:21:08 2017 +0100"
      },
      "committer": {
        "name": "Martin819",
        "email": "polreichmartin@gmail.com",
        "time": "Thu Mar 16 16:21:08 2017 +0100"
      },
      "message": "Added Kitchen tests and Travis\n"
    },
    {
      "commit": "b7f25992a9ecc99c111969f40fcf79080baefa5c",
      "tree": "cd98baccd9586b7f497012e94b770ce547fff1e9",
      "parents": [
        "833b13885017f2de526786d4f255928061589cb9"
      ],
      "author": {
        "name": "Filip Pytloun",
        "email": "filip@pytloun.cz",
        "time": "Wed Apr 20 11:39:08 2016 +0200"
      },
      "committer": {
        "name": "Filip Pytloun",
        "email": "filip@pytloun.cz",
        "time": "Wed Apr 20 15:22:45 2016 +0200"
      },
      "message": "Ensure guest user is absent if not explicitly defined\n"
    },
    {
      "commit": "db203949e0c02bb6e1230ff4c76ad9c23045fc00",
      "tree": "21f95a9e09cd0ed41dead7a021e92a0b625d105f",
      "parents": [
        "33b43385791ecc5cf85792036b31e5a5b524c2d5"
      ],
      "author": {
        "name": "Filip Pytloun",
        "email": "filip@pytloun.cz",
        "time": "Thu Apr 14 16:39:37 2016 +0200"
      },
      "committer": {
        "name": "Filip Pytloun",
        "email": "filip@pytloun.cz",
        "time": "Thu Apr 14 16:39:37 2016 +0200"
      },
      "message": "Fix source dependency parsing\n"
    },
    {
      "commit": "cf6f31851d643bcdd18ca454a5aa7acd95f4d2da",
      "tree": "07abc17fd3b6ba7dd078006fb147cef38224c9be",
      "parents": [
        "d80c5b2cf488ba80834fc257e1a47f991a9dbd52"
      ],
      "author": {
        "name": "Filip Pytloun",
        "email": "filip@pytloun.cz",
        "time": "Thu Apr 14 12:46:30 2016 +0200"
      },
      "committer": {
        "name": "Filip Pytloun",
        "email": "filip@pytloun.cz",
        "time": "Thu Apr 14 12:46:30 2016 +0200"
      },
      "message": "Fix tests dependency fetch\n"
    },
    {
      "commit": "87f66d739ce0c1281bc2e46231cdc3db6e8e18b4",
      "tree": "8689c841dad6c6e39016f807e91c13b01f367ebd",
      "parents": [
        "434a562b61aa037b5e67e6025dc93c55eae3a9b9"
      ],
      "author": {
        "name": "Filip Pytloun",
        "email": "filip@pytloun.cz",
        "time": "Thu Apr 14 11:51:09 2016 +0200"
      },
      "committer": {
        "name": "Filip Pytloun",
        "email": "filip@pytloun.cz",
        "time": "Thu Apr 14 11:51:09 2016 +0200"
      },
      "message": "Add makefile, run tests during package build\n"
    },
    {
      "commit": "9cf5386ca7f15bf9c777d96a98e21c651c3cbc67",
      "tree": "7cf9a066d9f4c93b638b9961214700a25d17ec19",
      "parents": [
        "79e14fcb6c267a2fa9b2092f55c7d78e5cf67724"
      ],
      "author": {
        "name": "jan kaufman",
        "email": "jan.kaufman@tcpcloud.eu",
        "time": "Mon Jan 25 22:26:14 2016 +0100"
      },
      "committer": {
        "name": "jan kaufman",
        "email": "jan.kaufman@tcpcloud.eu",
        "time": "Mon Jan 25 22:26:14 2016 +0100"
      },
      "message": "add formula tests\n"
    }
  ]
}
