Skip to content

Instantly share code, notes, and snippets.

@eps1lon
Created August 26, 2021 14:39
Show Gist options
  • Save eps1lon/4c5530ce5c0d5399403ae29bf1696017 to your computer and use it in GitHub Desktop.
Save eps1lon/4c5530ce5c0d5399403ae29bf1696017 to your computer and use it in GitHub Desktop.
GitHub Pull Requests stats
#!/usr/bin/env node
import * as Octokit from "@octokit/graphql";
import * as process from "process";
const [username] = process.argv.slice(2);
const githubToken = process.env.GITHUB_TOKEN;
const graphql = Octokit.graphql.defaults({
headers: { authorization: `token ${githubToken}` },
});
let endCursor = null;
let hasNextPage = true;
let visited = 0;
const pullRequests = [];
do {
const response = await graphql(
`
query userPullRequests($username: String!, $endCursor: String) {
user(login: $username) {
pullRequests(
first: 100
states: MERGED
after: $endCursor
orderBy: { field: CREATED_AT, direction: DESC }
) {
nodes {
additions
body
createdAt
deletions
url
}
pageInfo {
hasNextPage
endCursor
}
totalCount
}
}
}
`,
{ endCursor, username }
);
const {
user: {
pullRequests: { nodes, pageInfo, totalCount },
},
} = response;
endCursor = pageInfo.endCursor;
hasNextPage = pageInfo.hasNextPage;
pullRequests.push(
...nodes.map((pullRequest) => {
return {
...pullRequest,
body: pullRequest.body.length,
};
})
);
visited += nodes.length;
console.warn(`${visited} / ${totalCount}`);
} while (hasNextPage);
console.log(JSON.stringify(pullRequests, null, 2));
{
"name": "gh-pull-request-stats",
"type": "module",
"bin": "./gh-pull-request-stats.js",
"engines": {
"node": "^16.8.0"
},
"dependencies": {
"@octokit/graphql": "^4.6.4"
}
}
[
{
"additions": 7,
"body": 1663,
"createdAt": "2021-08-25T08:22:52Z",
"deletions": 3,
"url": "https://github.com/testing-library/dom-testing-library/pull/1013"
},
{
"additions": 214,
"body": 178,
"createdAt": "2021-08-24T18:01:15Z",
"deletions": 71,
"url": "https://github.com/mui-org/material-ui/pull/27946"
},
{
"additions": 13705,
"body": 649,
"createdAt": "2021-08-24T13:11:37Z",
"deletions": 13701,
"url": "https://github.com/mui-org/material-ui/pull/27942"
},
{
"additions": 8,
"body": 901,
"createdAt": "2021-08-24T09:58:42Z",
"deletions": 14,
"url": "https://github.com/mui-org/material-ui/pull/27936"
},
{
"additions": 5,
"body": 1171,
"createdAt": "2021-08-23T14:38:52Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/27924"
},
{
"additions": 34,
"body": 904,
"createdAt": "2021-08-23T13:26:50Z",
"deletions": 11,
"url": "https://github.com/mui-org/material-ui/pull/27923"
},
{
"additions": 70,
"body": 307,
"createdAt": "2021-08-20T09:41:25Z",
"deletions": 0,
"url": "https://github.com/facebook/react/pull/22144"
},
{
"additions": 14,
"body": 304,
"createdAt": "2021-08-19T09:38:25Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/27843"
},
{
"additions": 44,
"body": 779,
"createdAt": "2021-08-19T09:09:01Z",
"deletions": 44,
"url": "https://github.com/mui-org/material-ui/pull/27842"
},
{
"additions": 22,
"body": 831,
"createdAt": "2021-08-19T08:37:55Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/27841"
},
{
"additions": 134,
"body": 604,
"createdAt": "2021-08-18T08:40:13Z",
"deletions": 179,
"url": "https://github.com/mui-org/material-ui/pull/27828"
},
{
"additions": 2,
"body": 414,
"createdAt": "2021-08-18T06:38:09Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/27826"
},
{
"additions": 3,
"body": 103,
"createdAt": "2021-08-13T08:56:23Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/27720"
},
{
"additions": 1,
"body": 122,
"createdAt": "2021-08-12T13:58:21Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/27712"
},
{
"additions": 0,
"body": 77,
"createdAt": "2021-08-12T13:47:17Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/27711"
},
{
"additions": 4,
"body": 181,
"createdAt": "2021-08-12T10:02:19Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/27706"
},
{
"additions": 16,
"body": 759,
"createdAt": "2021-08-12T07:06:48Z",
"deletions": 35,
"url": "https://github.com/hbjORbj/material-ui/pull/1"
},
{
"additions": 2,
"body": 266,
"createdAt": "2021-08-11T14:08:24Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/27694"
},
{
"additions": 1,
"body": 464,
"createdAt": "2021-08-11T13:56:38Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/27693"
},
{
"additions": 1,
"body": 313,
"createdAt": "2021-08-11T12:58:14Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/27691"
},
{
"additions": 2,
"body": 340,
"createdAt": "2021-08-11T08:19:51Z",
"deletions": 225,
"url": "https://github.com/mui-org/material-ui/pull/27690"
},
{
"additions": 9,
"body": 134,
"createdAt": "2021-08-11T08:07:38Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/27689"
},
{
"additions": 34,
"body": 465,
"createdAt": "2021-08-10T14:40:19Z",
"deletions": 14,
"url": "https://github.com/mui-org/material-ui/pull/27683"
},
{
"additions": 10351,
"body": 114,
"createdAt": "2021-08-10T08:31:32Z",
"deletions": 9189,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/2944"
},
{
"additions": 110,
"body": 772,
"createdAt": "2021-08-10T07:39:10Z",
"deletions": 68,
"url": "https://github.com/mui-org/material-ui/pull/27675"
},
{
"additions": 16,
"body": 184,
"createdAt": "2021-08-09T08:26:02Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/27661"
},
{
"additions": 0,
"body": 453,
"createdAt": "2021-08-09T07:34:27Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/27660"
},
{
"additions": 0,
"body": 191,
"createdAt": "2021-08-05T12:29:27Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/27615"
},
{
"additions": 15,
"body": 255,
"createdAt": "2021-08-02T11:59:07Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/27573"
},
{
"additions": 48,
"body": 378,
"createdAt": "2021-07-30T08:52:54Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/27522"
},
{
"additions": 3,
"body": 515,
"createdAt": "2021-07-30T07:55:44Z",
"deletions": 5,
"url": "https://github.com/mui-org/material-ui/pull/27521"
},
{
"additions": 153,
"body": 133,
"createdAt": "2021-07-30T07:29:30Z",
"deletions": 205,
"url": "https://github.com/mui-org/material-ui/pull/27519"
},
{
"additions": 26,
"body": 0,
"createdAt": "2021-07-27T07:12:55Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/27465"
},
{
"additions": 1,
"body": 519,
"createdAt": "2021-07-26T14:37:53Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/27455"
},
{
"additions": 19,
"body": 472,
"createdAt": "2021-07-26T09:25:55Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/27446"
},
{
"additions": 3,
"body": 496,
"createdAt": "2021-07-26T06:53:22Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/27443"
},
{
"additions": 20,
"body": 114,
"createdAt": "2021-07-22T14:08:06Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/27407"
},
{
"additions": 436,
"body": 492,
"createdAt": "2021-07-22T13:42:23Z",
"deletions": 455,
"url": "https://github.com/mui-org/material-ui/pull/27406"
},
{
"additions": 5,
"body": 255,
"createdAt": "2021-07-22T10:22:40Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/27402"
},
{
"additions": 52,
"body": 485,
"createdAt": "2021-07-22T10:07:09Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/27401"
},
{
"additions": 451,
"body": 128,
"createdAt": "2021-07-22T08:10:04Z",
"deletions": 51,
"url": "https://github.com/mui-org/material-ui/pull/27399"
},
{
"additions": 160,
"body": 357,
"createdAt": "2021-07-21T14:37:22Z",
"deletions": 148,
"url": "https://github.com/mui-org/material-ui/pull/27394"
},
{
"additions": 180,
"body": 938,
"createdAt": "2021-07-21T13:06:46Z",
"deletions": 378,
"url": "https://github.com/mui-org/material-ui/pull/27392"
},
{
"additions": 241,
"body": 324,
"createdAt": "2021-07-21T11:48:14Z",
"deletions": 9,
"url": "https://github.com/mui-org/material-ui/pull/27389"
},
{
"additions": 3,
"body": 235,
"createdAt": "2021-07-21T10:29:20Z",
"deletions": 16,
"url": "https://github.com/mui-org/material-ui/pull/27386"
},
{
"additions": 3,
"body": 120,
"createdAt": "2021-07-21T09:48:25Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/27385"
},
{
"additions": 1,
"body": 197,
"createdAt": "2021-07-21T09:23:20Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/27384"
},
{
"additions": 120,
"body": 73,
"createdAt": "2021-07-20T09:43:20Z",
"deletions": 58,
"url": "https://github.com/mui-org/material-ui/pull/27370"
},
{
"additions": 14,
"body": 135,
"createdAt": "2021-07-20T09:03:35Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/27368"
},
{
"additions": 117,
"body": 435,
"createdAt": "2021-07-20T08:56:16Z",
"deletions": 112,
"url": "https://github.com/mui-org/material-ui/pull/27366"
},
{
"additions": 28,
"body": 0,
"createdAt": "2021-07-19T13:18:19Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/27355"
},
{
"additions": 52,
"body": 116,
"createdAt": "2021-07-19T10:20:34Z",
"deletions": 50,
"url": "https://github.com/mui-org/material-ui/pull/27353"
},
{
"additions": 13,
"body": 212,
"createdAt": "2021-07-19T09:21:27Z",
"deletions": 8,
"url": "https://github.com/mui-org/material-ui/pull/27352"
},
{
"additions": 57,
"body": 408,
"createdAt": "2021-07-19T09:12:56Z",
"deletions": 15,
"url": "https://github.com/mui-org/material-ui/pull/27351"
},
{
"additions": 1,
"body": 219,
"createdAt": "2021-07-19T08:16:11Z",
"deletions": 352,
"url": "https://github.com/mui-org/material-ui/pull/27350"
},
{
"additions": 4,
"body": 131,
"createdAt": "2021-07-19T07:43:03Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/27349"
},
{
"additions": 103,
"body": 370,
"createdAt": "2021-07-15T12:25:44Z",
"deletions": 89,
"url": "https://github.com/mui-org/material-ui/pull/27297"
},
{
"additions": 7,
"body": 287,
"createdAt": "2021-07-15T11:27:54Z",
"deletions": 10,
"url": "https://github.com/mui-org/material-ui/pull/27295"
},
{
"additions": 5,
"body": 68,
"createdAt": "2021-07-15T08:54:09Z",
"deletions": 10,
"url": "https://github.com/mui-org/material-ui/pull/27294"
},
{
"additions": 13,
"body": 204,
"createdAt": "2021-07-15T07:41:09Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/27293"
},
{
"additions": 5,
"body": 296,
"createdAt": "2021-07-14T12:30:25Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/27273"
},
{
"additions": 1,
"body": 566,
"createdAt": "2021-07-14T09:55:45Z",
"deletions": 7,
"url": "https://github.com/mui-org/material-ui/pull/27269"
},
{
"additions": 27,
"body": 128,
"createdAt": "2021-07-14T09:44:52Z",
"deletions": 23,
"url": "https://github.com/mui-org/material-ui/pull/27268"
},
{
"additions": 10,
"body": 57,
"createdAt": "2021-07-13T11:37:42Z",
"deletions": 5,
"url": "https://github.com/mui-org/material-ui/pull/27251"
},
{
"additions": 12,
"body": 1713,
"createdAt": "2021-07-13T08:26:39Z",
"deletions": 0,
"url": "https://github.com/emotion-js/emotion/pull/2428"
},
{
"additions": 40,
"body": 366,
"createdAt": "2021-07-12T17:36:55Z",
"deletions": 35,
"url": "https://github.com/mui-org/material-ui/pull/27242"
},
{
"additions": 89,
"body": 1023,
"createdAt": "2021-07-12T10:10:45Z",
"deletions": 88,
"url": "https://github.com/mui-org/material-ui/pull/27233"
},
{
"additions": 73,
"body": 1653,
"createdAt": "2021-07-09T09:05:36Z",
"deletions": 39,
"url": "https://github.com/mui-org/material-ui/pull/27198"
},
{
"additions": 36,
"body": 848,
"createdAt": "2021-07-08T08:39:19Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/27178"
},
{
"additions": 14,
"body": 311,
"createdAt": "2021-07-06T20:12:12Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/27151"
},
{
"additions": 559,
"body": 187,
"createdAt": "2021-07-06T20:06:38Z",
"deletions": 562,
"url": "https://github.com/mui-org/material-ui/pull/27150"
},
{
"additions": 37,
"body": 793,
"createdAt": "2021-07-06T08:32:26Z",
"deletions": 22,
"url": "https://github.com/mui-org/material-ui/pull/27140"
},
{
"additions": 13,
"body": 784,
"createdAt": "2021-07-06T07:38:42Z",
"deletions": 13,
"url": "https://github.com/mui-org/material-ui/pull/27138"
},
{
"additions": 37,
"body": 133,
"createdAt": "2021-07-05T18:28:07Z",
"deletions": 23,
"url": "https://github.com/mui-org/material-ui/pull/27134"
},
{
"additions": 6,
"body": 20,
"createdAt": "2021-07-04T09:43:02Z",
"deletions": 8,
"url": "https://github.com/mui-org/material-ui/pull/27118"
},
{
"additions": 1,
"body": 290,
"createdAt": "2021-07-04T08:52:22Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/27115"
},
{
"additions": 8,
"body": 118,
"createdAt": "2021-07-02T21:03:38Z",
"deletions": 0,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/2695"
},
{
"additions": 43,
"body": 669,
"createdAt": "2021-07-02T20:28:50Z",
"deletions": 22,
"url": "https://github.com/mui-org/material-ui/pull/27078"
},
{
"additions": 183,
"body": 80,
"createdAt": "2021-07-02T19:59:29Z",
"deletions": 194,
"url": "https://github.com/mui-org/material-ui/pull/27077"
},
{
"additions": 0,
"body": 92,
"createdAt": "2021-07-02T09:23:10Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/27069"
},
{
"additions": 13,
"body": 635,
"createdAt": "2021-07-02T08:58:55Z",
"deletions": 42,
"url": "https://github.com/mui-org/material-ui/pull/27065"
},
{
"additions": 6,
"body": 316,
"createdAt": "2021-07-02T07:43:18Z",
"deletions": 8,
"url": "https://github.com/mui-org/material-ui/pull/27063"
},
{
"additions": 13,
"body": 917,
"createdAt": "2021-07-01T13:32:34Z",
"deletions": 0,
"url": "https://github.com/testing-library/dom-testing-library/pull/990"
},
{
"additions": 21,
"body": 447,
"createdAt": "2021-06-30T20:06:51Z",
"deletions": 60,
"url": "https://github.com/mui-org/material-ui/pull/27043"
},
{
"additions": 70,
"body": 272,
"createdAt": "2021-06-30T19:34:48Z",
"deletions": 42,
"url": "https://github.com/mui-org/material-ui/pull/27042"
},
{
"additions": 55,
"body": 513,
"createdAt": "2021-06-30T11:53:06Z",
"deletions": 10,
"url": "https://github.com/mui-org/material-ui/pull/27034"
},
{
"additions": 39,
"body": 247,
"createdAt": "2021-06-29T12:51:53Z",
"deletions": 0,
"url": "https://github.com/facebook/react/pull/21766"
},
{
"additions": 1,
"body": 234,
"createdAt": "2021-06-29T09:19:37Z",
"deletions": 1,
"url": "https://github.com/testing-library/testing-library-docs/pull/876"
},
{
"additions": 20,
"body": 148,
"createdAt": "2021-06-29T08:55:43Z",
"deletions": 1,
"url": "https://github.com/styled-components/styled-components/pull/3521"
},
{
"additions": 8,
"body": 324,
"createdAt": "2021-06-29T07:12:43Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/27020"
},
{
"additions": 2,
"body": 59,
"createdAt": "2021-06-29T06:30:40Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/27019"
},
{
"additions": 61,
"body": 184,
"createdAt": "2021-06-29T06:23:41Z",
"deletions": 109,
"url": "https://github.com/mui-org/material-ui/pull/27018"
},
{
"additions": 38,
"body": 309,
"createdAt": "2021-06-28T13:56:58Z",
"deletions": 32,
"url": "https://github.com/mui-org/material-ui/pull/27004"
},
{
"additions": 1,
"body": 39,
"createdAt": "2021-06-28T13:18:42Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/27002"
},
{
"additions": 6,
"body": 0,
"createdAt": "2021-06-28T07:53:57Z",
"deletions": 15,
"url": "https://github.com/mui-org/material-ui/pull/26997"
},
{
"additions": 74,
"body": 707,
"createdAt": "2021-06-27T13:04:45Z",
"deletions": 79,
"url": "https://github.com/mui-org/material-ui/pull/26986"
},
{
"additions": 548,
"body": 72,
"createdAt": "2021-06-27T12:10:24Z",
"deletions": 274,
"url": "https://github.com/mui-org/material-ui/pull/26985"
},
{
"additions": 15,
"body": 132,
"createdAt": "2021-06-26T09:20:46Z",
"deletions": 9,
"url": "https://github.com/mui-org/material-ui/pull/26967"
},
{
"additions": 20,
"body": 27,
"createdAt": "2021-06-25T09:47:41Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/26954"
},
{
"additions": 12,
"body": 493,
"createdAt": "2021-06-25T08:09:26Z",
"deletions": 38,
"url": "https://github.com/mui-org/material-ui/pull/26952"
},
{
"additions": 35,
"body": 220,
"createdAt": "2021-06-25T07:35:08Z",
"deletions": 44,
"url": "https://github.com/mui-org/material-ui/pull/26951"
},
{
"additions": 168,
"body": 758,
"createdAt": "2021-06-25T07:14:10Z",
"deletions": 487,
"url": "https://github.com/mui-org/material-ui/pull/26949"
},
{
"additions": 66,
"body": 373,
"createdAt": "2021-06-25T06:13:42Z",
"deletions": 46,
"url": "https://github.com/reduxjs/react-redux/pull/1741"
},
{
"additions": 213,
"body": 1429,
"createdAt": "2021-06-24T15:49:35Z",
"deletions": 43,
"url": "https://github.com/mui-org/material-ui/pull/26941"
},
{
"additions": 13,
"body": 76,
"createdAt": "2021-06-24T08:59:36Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/26928"
},
{
"additions": 10,
"body": 127,
"createdAt": "2021-06-24T08:56:34Z",
"deletions": 16,
"url": "https://github.com/mui-org/material-ui/pull/26927"
},
{
"additions": 11,
"body": 372,
"createdAt": "2021-06-24T08:34:36Z",
"deletions": 5,
"url": "https://github.com/mui-org/material-ui/pull/26925"
},
{
"additions": 39,
"body": 63,
"createdAt": "2021-06-24T08:12:52Z",
"deletions": 37,
"url": "https://github.com/mui-org/material-ui/pull/26924"
},
{
"additions": 73,
"body": 120,
"createdAt": "2021-06-23T18:09:39Z",
"deletions": 82,
"url": "https://github.com/mui-org/material-ui/pull/26916"
},
{
"additions": 131,
"body": 120,
"createdAt": "2021-06-23T17:26:08Z",
"deletions": 97,
"url": "https://github.com/mui-org/material-ui/pull/26915"
},
{
"additions": 419,
"body": 120,
"createdAt": "2021-06-23T16:51:21Z",
"deletions": 324,
"url": "https://github.com/mui-org/material-ui/pull/26913"
},
{
"additions": 57,
"body": 59,
"createdAt": "2021-06-23T14:00:17Z",
"deletions": 14,
"url": "https://github.com/mui-org/material-ui/pull/26912"
},
{
"additions": 61,
"body": 963,
"createdAt": "2021-06-23T07:38:45Z",
"deletions": 23,
"url": "https://github.com/adobe/react-spectrum/pull/2051"
},
{
"additions": 4,
"body": 1434,
"createdAt": "2021-06-23T06:12:38Z",
"deletions": 18,
"url": "https://github.com/testing-library/dom-testing-library/pull/986"
},
{
"additions": 3,
"body": 0,
"createdAt": "2021-06-21T09:05:05Z",
"deletions": 0,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/692"
},
{
"additions": 0,
"body": 35,
"createdAt": "2021-06-21T08:56:34Z",
"deletions": 3,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/691"
},
{
"additions": 1,
"body": 151,
"createdAt": "2021-06-21T08:51:01Z",
"deletions": 3,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/690"
},
{
"additions": 4,
"body": 292,
"createdAt": "2021-06-21T06:32:45Z",
"deletions": 1,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/2523"
},
{
"additions": 20,
"body": 312,
"createdAt": "2021-06-20T13:26:38Z",
"deletions": 15,
"url": "https://github.com/mui-org/material-ui/pull/26858"
},
{
"additions": 76,
"body": 1155,
"createdAt": "2021-06-20T08:21:14Z",
"deletions": 72,
"url": "https://github.com/testing-library/react-testing-library/pull/936"
},
{
"additions": 3,
"body": 844,
"createdAt": "2021-06-20T08:05:17Z",
"deletions": 3,
"url": "https://github.com/testing-library/dom-testing-library/pull/984"
},
{
"additions": 12,
"body": 81,
"createdAt": "2021-06-20T08:02:33Z",
"deletions": 166,
"url": "https://github.com/testing-library/testing-library-docs/pull/866"
},
{
"additions": 132,
"body": 59,
"createdAt": "2021-06-19T07:59:15Z",
"deletions": 132,
"url": "https://github.com/mui-org/material-ui/pull/26837"
},
{
"additions": 14,
"body": 248,
"createdAt": "2021-06-19T07:57:02Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/26836"
},
{
"additions": 2,
"body": 252,
"createdAt": "2021-06-19T07:46:27Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/26835"
},
{
"additions": 89,
"body": 419,
"createdAt": "2021-06-18T19:33:15Z",
"deletions": 328,
"url": "https://github.com/mui-org/material-ui/pull/26832"
},
{
"additions": 7,
"body": 1329,
"createdAt": "2021-06-18T11:01:08Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/26821"
},
{
"additions": 10,
"body": 325,
"createdAt": "2021-06-18T07:08:11Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/26815"
},
{
"additions": 81,
"body": 314,
"createdAt": "2021-06-18T07:01:33Z",
"deletions": 39,
"url": "https://github.com/mui-org/material-ui/pull/26814"
},
{
"additions": 32,
"body": 1053,
"createdAt": "2021-06-16T08:14:06Z",
"deletions": 0,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/53857"
},
{
"additions": 3,
"body": 366,
"createdAt": "2021-06-16T07:45:06Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/26778"
},
{
"additions": 1099,
"body": 1539,
"createdAt": "2021-06-15T19:49:35Z",
"deletions": 2556,
"url": "https://github.com/mui-org/material-ui/pull/26774"
},
{
"additions": 0,
"body": 59,
"createdAt": "2021-06-15T11:41:15Z",
"deletions": 46,
"url": "https://github.com/mui-org/material-ui/pull/26765"
},
{
"additions": 8,
"body": 366,
"createdAt": "2021-06-15T09:45:54Z",
"deletions": 12,
"url": "https://github.com/mui-org/material-ui/pull/26762"
},
{
"additions": 23,
"body": 62,
"createdAt": "2021-06-15T08:46:44Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/26761"
},
{
"additions": 1,
"body": 605,
"createdAt": "2021-06-15T07:08:24Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/26758"
},
{
"additions": 36,
"body": 364,
"createdAt": "2021-06-15T05:49:20Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/26757"
},
{
"additions": 649,
"body": 0,
"createdAt": "2021-06-14T11:56:18Z",
"deletions": 661,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/686"
},
{
"additions": 386,
"body": 204,
"createdAt": "2021-06-14T09:09:53Z",
"deletions": 21,
"url": "https://github.com/facebook/jest/pull/11567"
},
{
"additions": 798,
"body": 2563,
"createdAt": "2021-06-13T20:53:24Z",
"deletions": 792,
"url": "https://github.com/testing-library/dom-testing-library/pull/979"
},
{
"additions": 164,
"body": 87,
"createdAt": "2021-06-13T20:42:09Z",
"deletions": 1556,
"url": "https://github.com/reduxjs/react-redux/pull/1734"
},
{
"additions": 40,
"body": 922,
"createdAt": "2021-06-13T19:46:14Z",
"deletions": 0,
"url": "https://github.com/testing-library/dom-testing-library/pull/978"
},
{
"additions": 46,
"body": 64,
"createdAt": "2021-06-13T18:05:46Z",
"deletions": 13,
"url": "https://github.com/mui-org/material-ui/pull/26740"
},
{
"additions": 745,
"body": 341,
"createdAt": "2021-06-13T08:43:35Z",
"deletions": 697,
"url": "https://github.com/mui-org/material-ui/pull/26736"
},
{
"additions": 1,
"body": 1123,
"createdAt": "2021-06-12T09:49:50Z",
"deletions": 1,
"url": "https://github.com/testing-library/react-testing-library/pull/931"
},
{
"additions": 4,
"body": 770,
"createdAt": "2021-06-12T09:30:48Z",
"deletions": 3,
"url": "https://github.com/testing-library/dom-testing-library/pull/976"
},
{
"additions": 4,
"body": 774,
"createdAt": "2021-06-12T09:23:40Z",
"deletions": 3,
"url": "https://github.com/testing-library/react-testing-library/pull/930"
},
{
"additions": 69,
"body": 89,
"createdAt": "2021-06-12T09:09:17Z",
"deletions": 26,
"url": "https://github.com/testing-library/react-testing-library/pull/929"
},
{
"additions": 62,
"body": 834,
"createdAt": "2021-06-12T08:35:50Z",
"deletions": 18,
"url": "https://github.com/testing-library/react-testing-library/pull/928"
},
{
"additions": 42,
"body": 840,
"createdAt": "2021-06-11T08:07:20Z",
"deletions": 49,
"url": "https://github.com/mui-org/material-ui/pull/26696"
},
{
"additions": 2,
"body": 44,
"createdAt": "2021-06-10T15:31:23Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/26690"
},
{
"additions": 13,
"body": 275,
"createdAt": "2021-06-10T07:51:15Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/26683"
},
{
"additions": 150,
"body": 444,
"createdAt": "2021-06-09T18:30:40Z",
"deletions": 121,
"url": "https://github.com/mui-org/material-ui/pull/26678"
},
{
"additions": 503,
"body": 468,
"createdAt": "2021-06-09T15:40:03Z",
"deletions": 218,
"url": "https://github.com/mui-org/material-ui/pull/26672"
},
{
"additions": 30,
"body": 430,
"createdAt": "2021-06-08T20:26:16Z",
"deletions": 22,
"url": "https://github.com/mui-org/material-ui/pull/26657"
},
{
"additions": 288245,
"body": 208,
"createdAt": "2021-06-08T20:04:32Z",
"deletions": 47910,
"url": "https://github.com/mui-org/material-ui/pull/26656"
},
{
"additions": 398,
"body": 1124,
"createdAt": "2021-06-08T17:44:28Z",
"deletions": 272,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/53685"
},
{
"additions": 7,
"body": 199,
"createdAt": "2021-06-08T17:17:57Z",
"deletions": 8,
"url": "https://github.com/mui-org/material-ui/pull/26654"
},
{
"additions": 1,
"body": 1185,
"createdAt": "2021-06-08T09:24:45Z",
"deletions": 1,
"url": "https://github.com/testing-library/react-testing-library/pull/923"
},
{
"additions": 1,
"body": 1385,
"createdAt": "2021-06-08T08:49:50Z",
"deletions": 1,
"url": "https://github.com/testing-library/react-testing-library/pull/922"
},
{
"additions": 59,
"body": 837,
"createdAt": "2021-06-08T08:46:56Z",
"deletions": 55,
"url": "https://github.com/testing-library/react-testing-library/pull/921"
},
{
"additions": 0,
"body": 59,
"createdAt": "2021-06-08T07:04:50Z",
"deletions": 19,
"url": "https://github.com/eps1lon/vax-notify/pull/21"
},
{
"additions": 7,
"body": 42,
"createdAt": "2021-06-08T06:58:54Z",
"deletions": 7,
"url": "https://github.com/eps1lon/vax-notify/pull/20"
},
{
"additions": 2,
"body": 30,
"createdAt": "2021-06-08T06:29:56Z",
"deletions": 504,
"url": "https://github.com/eps1lon/vax-notify/pull/19"
},
{
"additions": 4,
"body": 54,
"createdAt": "2021-06-08T06:08:04Z",
"deletions": 1,
"url": "https://github.com/eps1lon/vax-notify/pull/18"
},
{
"additions": 132,
"body": 151,
"createdAt": "2021-06-07T13:35:39Z",
"deletions": 23,
"url": "https://github.com/mui-org/material-ui/pull/26636"
},
{
"additions": 539,
"body": 40,
"createdAt": "2021-06-07T12:05:04Z",
"deletions": 470,
"url": "https://github.com/mui-org/material-ui/pull/26633"
},
{
"additions": 33,
"body": 201,
"createdAt": "2021-06-07T10:25:13Z",
"deletions": 2726,
"url": "https://github.com/typescript-cheatsheets/react/pull/426"
},
{
"additions": 0,
"body": 869,
"createdAt": "2021-06-03T14:04:26Z",
"deletions": 105,
"url": "https://github.com/testing-library/dom-testing-library/pull/969"
},
{
"additions": 13,
"body": 352,
"createdAt": "2021-06-03T11:11:14Z",
"deletions": 15,
"url": "https://github.com/mui-org/material-ui/pull/26579"
},
{
"additions": 1,
"body": 1529,
"createdAt": "2021-06-03T09:19:14Z",
"deletions": 1,
"url": "https://github.com/testing-library/dom-testing-library/pull/968"
},
{
"additions": 41,
"body": 88,
"createdAt": "2021-06-02T11:40:28Z",
"deletions": 23,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/666"
},
{
"additions": 22,
"body": 2793,
"createdAt": "2021-06-01T09:18:49Z",
"deletions": 333,
"url": "https://github.com/testing-library/dom-testing-library/pull/966"
},
{
"additions": 14,
"body": 769,
"createdAt": "2021-05-31T18:28:54Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/26535"
},
{
"additions": 1,
"body": 1501,
"createdAt": "2021-05-31T11:28:45Z",
"deletions": 1,
"url": "https://github.com/testing-library/dom-testing-library/pull/965"
},
{
"additions": 347,
"body": 0,
"createdAt": "2021-05-31T07:29:08Z",
"deletions": 236,
"url": "https://github.com/eps1lon/aria-activedescendant-static-dynamic/pull/2"
},
{
"additions": 19,
"body": 0,
"createdAt": "2021-05-30T19:10:58Z",
"deletions": 2,
"url": "https://github.com/eps1lon/aria-activedescendant-static-dynamic/pull/1"
},
{
"additions": 184,
"body": 877,
"createdAt": "2021-05-28T17:32:43Z",
"deletions": 99,
"url": "https://github.com/mui-org/material-ui/pull/26493"
},
{
"additions": 5,
"body": 184,
"createdAt": "2021-05-28T14:03:03Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/26491"
},
{
"additions": 4,
"body": 114,
"createdAt": "2021-05-28T11:30:47Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/26487"
},
{
"additions": 311,
"body": 682,
"createdAt": "2021-05-28T08:26:01Z",
"deletions": 327,
"url": "https://github.com/testing-library/dom-testing-library/pull/962"
},
{
"additions": 1,
"body": 714,
"createdAt": "2021-05-27T20:06:28Z",
"deletions": 0,
"url": "https://github.com/kentcdodds/kcd-scripts/pull/211"
},
{
"additions": 906,
"body": 593,
"createdAt": "2021-05-27T08:25:02Z",
"deletions": 859,
"url": "https://github.com/facebook/react/pull/21574"
},
{
"additions": 1,
"body": 659,
"createdAt": "2021-05-26T21:54:38Z",
"deletions": 1,
"url": "https://github.com/mdn/content/pull/5355"
},
{
"additions": 21,
"body": 205,
"createdAt": "2021-05-26T08:37:14Z",
"deletions": 2,
"url": "https://github.com/import-js/eslint-plugin-import/pull/2099"
},
{
"additions": 4,
"body": 852,
"createdAt": "2021-05-26T07:28:42Z",
"deletions": 4,
"url": "https://github.com/kentcdodds/kcd-scripts/pull/210"
},
{
"additions": 81,
"body": 234,
"createdAt": "2021-05-25T13:58:22Z",
"deletions": 148,
"url": "https://github.com/mui-org/material-ui/pull/26451"
},
{
"additions": 564,
"body": 0,
"createdAt": "2021-05-25T11:58:43Z",
"deletions": 586,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/655"
},
{
"additions": 3,
"body": 62,
"createdAt": "2021-05-25T11:43:48Z",
"deletions": 2,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/653"
},
{
"additions": 8,
"body": 55,
"createdAt": "2021-05-25T11:33:26Z",
"deletions": 8,
"url": "https://github.com/eps1lon/screen-reader-testing-library/pull/40"
},
{
"additions": 6,
"body": 211,
"createdAt": "2021-05-25T10:53:30Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/26448"
},
{
"additions": 3,
"body": 137,
"createdAt": "2021-05-25T10:37:48Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/26447"
},
{
"additions": 11,
"body": 111,
"createdAt": "2021-05-25T08:35:16Z",
"deletions": 30,
"url": "https://github.com/mui-org/material-ui/pull/26444"
},
{
"additions": 62,
"body": 0,
"createdAt": "2021-05-24T16:26:36Z",
"deletions": 21,
"url": "https://github.com/eps1lon/screen-reader-testing-library/pull/26"
},
{
"additions": 70,
"body": 0,
"createdAt": "2021-05-24T16:26:02Z",
"deletions": 25,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/2416"
},
{
"additions": 7,
"body": 0,
"createdAt": "2021-05-24T13:32:56Z",
"deletions": 9,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/2413"
},
{
"additions": 16007,
"body": 10,
"createdAt": "2021-05-24T11:35:30Z",
"deletions": 13981,
"url": "https://github.com/eps1lon/screen-reader-testing-library/pull/25"
},
{
"additions": 10,
"body": 63,
"createdAt": "2021-05-24T10:57:21Z",
"deletions": 3,
"url": "https://github.com/eps1lon/screen-reader-testing-library/pull/23"
},
{
"additions": 0,
"body": 1649,
"createdAt": "2021-05-21T20:48:37Z",
"deletions": 6,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/53191"
},
{
"additions": 8,
"body": 1243,
"createdAt": "2021-05-21T20:31:20Z",
"deletions": 4,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/53190"
},
{
"additions": 59,
"body": 672,
"createdAt": "2021-05-21T13:53:09Z",
"deletions": 13,
"url": "https://github.com/mui-org/material-ui/pull/26411"
},
{
"additions": 178,
"body": 262,
"createdAt": "2021-05-21T08:51:32Z",
"deletions": 105,
"url": "https://github.com/mui-org/material-ui/pull/26407"
},
{
"additions": 7,
"body": 148,
"createdAt": "2021-05-21T08:49:42Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/26405"
},
{
"additions": 281,
"body": 853,
"createdAt": "2021-05-20T19:33:30Z",
"deletions": 133,
"url": "https://github.com/mui-org/material-ui/pull/26400"
},
{
"additions": 30,
"body": 408,
"createdAt": "2021-05-20T13:51:20Z",
"deletions": 11,
"url": "https://github.com/mui-org/material-ui/pull/26394"
},
{
"additions": 108,
"body": 66,
"createdAt": "2021-05-19T10:56:09Z",
"deletions": 24,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/2409"
},
{
"additions": 9,
"body": 49,
"createdAt": "2021-05-19T08:22:09Z",
"deletions": 2,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/2407"
},
{
"additions": 23,
"body": 493,
"createdAt": "2021-05-17T08:34:25Z",
"deletions": 45,
"url": "https://github.com/mui-org/material-ui/pull/26336"
},
{
"additions": 79,
"body": 735,
"createdAt": "2021-05-16T07:03:20Z",
"deletions": 71,
"url": "https://github.com/mui-org/material-ui/pull/26323"
},
{
"additions": 6,
"body": 258,
"createdAt": "2021-05-16T06:30:29Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/26322"
},
{
"additions": 47910,
"body": 754,
"createdAt": "2021-05-15T18:34:05Z",
"deletions": 288245,
"url": "https://github.com/mui-org/material-ui/pull/26310"
},
{
"additions": 28268,
"body": 891,
"createdAt": "2021-05-15T18:01:04Z",
"deletions": 81545,
"url": "https://github.com/mui-org/material-ui/pull/26309"
},
{
"additions": 92,
"body": 185,
"createdAt": "2021-05-15T16:35:43Z",
"deletions": 70,
"url": "https://github.com/mui-org/material-ui/pull/26308"
},
{
"additions": 6248,
"body": 325,
"createdAt": "2021-05-15T15:32:07Z",
"deletions": 6254,
"url": "https://github.com/mui-org/material-ui/pull/26306"
},
{
"additions": 11332,
"body": 1054,
"createdAt": "2021-05-15T09:26:00Z",
"deletions": 65718,
"url": "https://github.com/mui-org/material-ui/pull/26302"
},
{
"additions": 3,
"body": 768,
"createdAt": "2021-05-15T07:29:19Z",
"deletions": 1,
"url": "https://github.com/microsoft/TypeScript-Website/pull/1827"
},
{
"additions": 20,
"body": 1150,
"createdAt": "2021-05-14T13:27:28Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/26295"
},
{
"additions": 312,
"body": 103,
"createdAt": "2021-05-14T12:03:34Z",
"deletions": 267,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/2382"
},
{
"additions": 357299,
"body": 899,
"createdAt": "2021-05-12T14:25:32Z",
"deletions": 19,
"url": "https://github.com/mui-org/material-ui/pull/26268"
},
{
"additions": 5,
"body": 237,
"createdAt": "2021-05-12T08:39:12Z",
"deletions": 7,
"url": "https://github.com/mui-org/material-ui/pull/26262"
},
{
"additions": 13,
"body": 163,
"createdAt": "2021-05-12T08:18:38Z",
"deletions": 88,
"url": "https://github.com/mui-org/material-ui/pull/26261"
},
{
"additions": 8,
"body": 54,
"createdAt": "2021-05-10T14:26:52Z",
"deletions": 8,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/639"
},
{
"additions": 7,
"body": 503,
"createdAt": "2021-05-10T11:53:44Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/26234"
},
{
"additions": 23,
"body": 232,
"createdAt": "2021-05-10T11:36:52Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/26233"
},
{
"additions": 7,
"body": 270,
"createdAt": "2021-05-07T14:17:19Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/26179"
},
{
"additions": 38,
"body": 0,
"createdAt": "2021-05-07T13:44:37Z",
"deletions": 4,
"url": "https://github.com/eps1lon/mui-maintainer-dashboard-remix/pull/1"
},
{
"additions": 0,
"body": 219,
"createdAt": "2021-05-06T15:38:22Z",
"deletions": 7,
"url": "https://github.com/testing-library/testing-library-docs/pull/841"
},
{
"additions": 397,
"body": 912,
"createdAt": "2021-05-06T15:00:59Z",
"deletions": 388,
"url": "https://github.com/testing-library/dom-testing-library/pull/955"
},
{
"additions": 16,
"body": 837,
"createdAt": "2021-05-06T12:55:16Z",
"deletions": 16,
"url": "https://github.com/mui-org/material-ui/pull/26161"
},
{
"additions": 1,
"body": 0,
"createdAt": "2021-05-06T08:04:35Z",
"deletions": 1,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/2275"
},
{
"additions": 14,
"body": 802,
"createdAt": "2021-05-05T15:23:04Z",
"deletions": 19,
"url": "https://github.com/testing-library/dom-testing-library/pull/953"
},
{
"additions": 37,
"body": 745,
"createdAt": "2021-05-05T09:32:55Z",
"deletions": 9,
"url": "https://github.com/mui-org/material-ui/pull/26140"
},
{
"additions": 13,
"body": 251,
"createdAt": "2021-05-04T14:27:34Z",
"deletions": 12,
"url": "https://github.com/mui-org/material-ui/pull/26129"
},
{
"additions": 73,
"body": 847,
"createdAt": "2021-05-04T14:19:07Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/26128"
},
{
"additions": 199,
"body": 598,
"createdAt": "2021-05-04T09:39:44Z",
"deletions": 218,
"url": "https://github.com/mui-org/material-ui/pull/26123"
},
{
"additions": 12,
"body": 263,
"createdAt": "2021-05-04T09:01:12Z",
"deletions": 12,
"url": "https://github.com/mui-org/material-ui/pull/26121"
},
{
"additions": 34,
"body": 93,
"createdAt": "2021-05-04T08:48:18Z",
"deletions": 13,
"url": "https://github.com/mui-org/material-ui/pull/26120"
},
{
"additions": 47,
"body": 933,
"createdAt": "2021-05-04T08:20:06Z",
"deletions": 186,
"url": "https://github.com/mui-org/material-ui/pull/26118"
},
{
"additions": 38,
"body": 147,
"createdAt": "2021-05-04T07:01:09Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/26116"
},
{
"additions": 1,
"body": 57,
"createdAt": "2021-05-03T10:25:41Z",
"deletions": 0,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/630"
},
{
"additions": 39,
"body": 77,
"createdAt": "2021-05-03T07:25:01Z",
"deletions": 0,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/629"
},
{
"additions": 27,
"body": 126,
"createdAt": "2021-05-03T05:33:35Z",
"deletions": 4,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/627"
},
{
"additions": 0,
"body": 376,
"createdAt": "2021-05-03T05:19:47Z",
"deletions": 5,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/626"
},
{
"additions": 0,
"body": 11,
"createdAt": "2021-05-03T05:02:27Z",
"deletions": 4,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/625"
},
{
"additions": 481,
"body": 600,
"createdAt": "2021-05-02T09:11:45Z",
"deletions": 433,
"url": "https://github.com/mui-org/material-ui/pull/26090"
},
{
"additions": 73,
"body": 700,
"createdAt": "2021-05-01T10:20:01Z",
"deletions": 73,
"url": "https://github.com/mui-org/material-ui/pull/26081"
},
{
"additions": 112,
"body": 172,
"createdAt": "2021-04-30T20:13:06Z",
"deletions": 65,
"url": "https://github.com/mui-org/material-ui/pull/26075"
},
{
"additions": 184,
"body": 416,
"createdAt": "2021-04-30T19:37:50Z",
"deletions": 173,
"url": "https://github.com/mui-org/material-ui/pull/26074"
},
{
"additions": 68,
"body": 209,
"createdAt": "2021-04-30T09:38:56Z",
"deletions": 81,
"url": "https://github.com/mui-org/material-ui/pull/26066"
},
{
"additions": 80,
"body": 639,
"createdAt": "2021-04-30T09:03:49Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/26065"
},
{
"additions": 15,
"body": 123,
"createdAt": "2021-04-29T21:36:47Z",
"deletions": 9,
"url": "https://github.com/mui-org/material-ui/pull/26063"
},
{
"additions": 35,
"body": 644,
"createdAt": "2021-04-29T20:24:20Z",
"deletions": 22,
"url": "https://github.com/mui-org/material-ui/pull/26062"
},
{
"additions": 402,
"body": 497,
"createdAt": "2021-04-29T15:03:15Z",
"deletions": 10,
"url": "https://github.com/mui-org/material-ui/pull/26056"
},
{
"additions": 6,
"body": 704,
"createdAt": "2021-04-29T14:24:38Z",
"deletions": 8,
"url": "https://github.com/mui-org/material-ui/pull/26055"
},
{
"additions": 20,
"body": 238,
"createdAt": "2021-04-29T13:34:53Z",
"deletions": 55,
"url": "https://github.com/mui-org/material-ui/pull/26053"
},
{
"additions": 53,
"body": 467,
"createdAt": "2021-04-29T12:51:22Z",
"deletions": 95,
"url": "https://github.com/mui-org/material-ui/pull/26052"
},
{
"additions": 1,
"body": 0,
"createdAt": "2021-04-28T16:15:08Z",
"deletions": 10,
"url": "https://github.com/mui-org/material-ui/pull/26023"
},
{
"additions": 7,
"body": 97,
"createdAt": "2021-04-28T12:38:31Z",
"deletions": 7,
"url": "https://github.com/mui-org/material-ui/pull/26017"
},
{
"additions": 39,
"body": 1400,
"createdAt": "2021-04-28T12:21:49Z",
"deletions": 21,
"url": "https://github.com/mui-org/material-ui/pull/26016"
},
{
"additions": 8,
"body": 196,
"createdAt": "2021-04-28T11:17:11Z",
"deletions": 7,
"url": "https://github.com/mui-org/material-ui/pull/26014"
},
{
"additions": 0,
"body": 76,
"createdAt": "2021-04-28T10:30:05Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/26011"
},
{
"additions": 163,
"body": 222,
"createdAt": "2021-04-27T18:20:48Z",
"deletions": 133,
"url": "https://github.com/mui-org/material-ui/pull/26005"
},
{
"additions": 48,
"body": 100,
"createdAt": "2021-04-27T13:25:23Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/26003"
},
{
"additions": 450,
"body": 115,
"createdAt": "2021-04-27T10:56:00Z",
"deletions": 71,
"url": "https://github.com/mui-org/material-ui/pull/25998"
},
{
"additions": 2,
"body": 1883,
"createdAt": "2021-04-27T10:01:49Z",
"deletions": 1,
"url": "https://github.com/facebook/react/pull/21364"
},
{
"additions": 3,
"body": 679,
"createdAt": "2021-04-27T09:08:15Z",
"deletions": 4,
"url": "https://github.com/facebook/react/pull/21363"
},
{
"additions": 6,
"body": 480,
"createdAt": "2021-04-26T12:30:57Z",
"deletions": 7,
"url": "https://github.com/mui-org/material-ui/pull/25981"
},
{
"additions": 3,
"body": 370,
"createdAt": "2021-04-26T09:18:17Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/25978"
},
{
"additions": 16,
"body": 940,
"createdAt": "2021-04-25T19:33:29Z",
"deletions": 15,
"url": "https://github.com/mui-org/material-ui/pull/25972"
},
{
"additions": 28,
"body": 23,
"createdAt": "2021-04-25T18:45:41Z",
"deletions": 13,
"url": "https://github.com/mui-org/material-ui/pull/25971"
},
{
"additions": 16,
"body": 613,
"createdAt": "2021-04-25T12:03:00Z",
"deletions": 10,
"url": "https://github.com/vercel/next.js/pull/24440"
},
{
"additions": 1,
"body": 544,
"createdAt": "2021-04-25T11:21:31Z",
"deletions": 0,
"url": "https://github.com/facebook/jest/pull/11342"
},
{
"additions": 172,
"body": 560,
"createdAt": "2021-04-24T15:41:50Z",
"deletions": 265,
"url": "https://github.com/mui-org/material-ui/pull/25938"
},
{
"additions": 5,
"body": 75,
"createdAt": "2021-04-24T14:13:26Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/25936"
},
{
"additions": 371,
"body": 1300,
"createdAt": "2021-04-24T12:43:09Z",
"deletions": 430,
"url": "https://github.com/mui-org/material-ui/pull/25933"
},
{
"additions": 61,
"body": 108,
"createdAt": "2021-04-24T11:24:38Z",
"deletions": 68,
"url": "https://github.com/mui-org/material-ui/pull/25931"
},
{
"additions": 1,
"body": 62,
"createdAt": "2021-04-24T11:23:16Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/25930"
},
{
"additions": 62,
"body": 339,
"createdAt": "2021-04-23T22:05:42Z",
"deletions": 10,
"url": "https://github.com/mui-org/material-ui/pull/25917"
},
{
"additions": 11,
"body": 50,
"createdAt": "2021-04-23T13:26:00Z",
"deletions": 146,
"url": "https://github.com/mui-org/material-ui/pull/25909"
},
{
"additions": 90,
"body": 62,
"createdAt": "2021-04-23T09:29:59Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/25903"
},
{
"additions": 1,
"body": 94,
"createdAt": "2021-04-23T07:39:28Z",
"deletions": 8,
"url": "https://github.com/mui-org/material-ui/pull/25900"
},
{
"additions": 34,
"body": 329,
"createdAt": "2021-04-22T10:54:34Z",
"deletions": 14,
"url": "https://github.com/mui-org/material-ui/pull/25885"
},
{
"additions": 286,
"body": 0,
"createdAt": "2021-04-22T09:41:36Z",
"deletions": 270,
"url": "https://github.com/eps1lon/solverfox.dev/pull/142"
},
{
"additions": 60,
"body": 62,
"createdAt": "2021-04-22T09:35:28Z",
"deletions": 91,
"url": "https://github.com/eps1lon/solverfox.dev/pull/141"
},
{
"additions": 15,
"body": 112,
"createdAt": "2021-04-22T09:29:47Z",
"deletions": 3,
"url": "https://github.com/eps1lon/solverfox.dev/pull/140"
},
{
"additions": 0,
"body": 70,
"createdAt": "2021-04-22T08:57:52Z",
"deletions": 2,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/607"
},
{
"additions": 6,
"body": 0,
"createdAt": "2021-04-21T15:57:39Z",
"deletions": 4,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/606"
},
{
"additions": 8,
"body": 1225,
"createdAt": "2021-04-21T10:20:13Z",
"deletions": 7,
"url": "https://github.com/mui-org/material-ui/pull/25861"
},
{
"additions": 182,
"body": 2228,
"createdAt": "2021-04-21T08:30:15Z",
"deletions": 21,
"url": "https://github.com/mui-org/material-ui/pull/25860"
},
{
"additions": 68,
"body": 0,
"createdAt": "2021-04-20T17:28:18Z",
"deletions": 0,
"url": "https://github.com/eps1lon/solverfox.dev/pull/135"
},
{
"additions": 28,
"body": 1425,
"createdAt": "2021-04-20T15:51:21Z",
"deletions": 14,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/52485"
},
{
"additions": 2,
"body": 1391,
"createdAt": "2021-04-19T20:27:40Z",
"deletions": 16,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/52464"
},
{
"additions": 0,
"body": 1500,
"createdAt": "2021-04-19T20:15:50Z",
"deletions": 27,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/52463"
},
{
"additions": 91,
"body": 1086,
"createdAt": "2021-04-19T11:50:31Z",
"deletions": 50,
"url": "https://github.com/mui-org/material-ui/pull/25839"
},
{
"additions": 102,
"body": 135,
"createdAt": "2021-04-17T19:26:54Z",
"deletions": 31,
"url": "https://github.com/mui-org/material-ui/pull/25819"
},
{
"additions": 92,
"body": 323,
"createdAt": "2021-04-17T18:54:34Z",
"deletions": 82,
"url": "https://github.com/mui-org/material-ui/pull/25818"
},
{
"additions": 11,
"body": 147,
"createdAt": "2021-04-17T18:28:49Z",
"deletions": 11,
"url": "https://github.com/mui-org/material-ui/pull/25817"
},
{
"additions": 340,
"body": 2156,
"createdAt": "2021-04-17T11:39:36Z",
"deletions": 31,
"url": "https://github.com/mui-org/material-ui/pull/25812"
},
{
"additions": 116,
"body": 882,
"createdAt": "2021-04-17T08:57:24Z",
"deletions": 88,
"url": "https://github.com/mui-org/material-ui/pull/25811"
},
{
"additions": 186,
"body": 584,
"createdAt": "2021-04-17T08:44:08Z",
"deletions": 168,
"url": "https://github.com/mui-org/material-ui/pull/25810"
},
{
"additions": 13,
"body": 183,
"createdAt": "2021-04-16T15:55:57Z",
"deletions": 12,
"url": "https://github.com/mui-org/material-ui/pull/25795"
},
{
"additions": 108,
"body": 507,
"createdAt": "2021-04-15T16:36:27Z",
"deletions": 102,
"url": "https://github.com/mui-org/material-ui/pull/25782"
},
{
"additions": 4880,
"body": 2904,
"createdAt": "2021-04-13T16:37:57Z",
"deletions": 5455,
"url": "https://github.com/mui-org/material-ui/pull/25754"
},
{
"additions": 7,
"body": 201,
"createdAt": "2021-04-13T16:03:46Z",
"deletions": 13,
"url": "https://github.com/mui-org/material-ui/pull/25753"
},
{
"additions": 134,
"body": 811,
"createdAt": "2021-04-13T10:12:12Z",
"deletions": 121,
"url": "https://github.com/mui-org/material-ui/pull/25746"
},
{
"additions": 5,
"body": 164,
"createdAt": "2021-04-13T10:07:00Z",
"deletions": 32,
"url": "https://github.com/mui-org/material-ui/pull/25745"
},
{
"additions": 7,
"body": 80,
"createdAt": "2021-04-12T09:58:51Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/25733"
},
{
"additions": 1,
"body": 2,
"createdAt": "2021-04-12T09:44:29Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/25732"
},
{
"additions": 84,
"body": 0,
"createdAt": "2021-04-12T08:42:07Z",
"deletions": 19,
"url": "https://github.com/mui-org/material-ui/pull/25731"
},
{
"additions": 106,
"body": 947,
"createdAt": "2021-04-09T12:57:09Z",
"deletions": 102,
"url": "https://github.com/mui-org/material-ui/pull/25685"
},
{
"additions": 22,
"body": 152,
"createdAt": "2021-04-09T12:46:14Z",
"deletions": 15,
"url": "https://github.com/mui-org/material-ui/pull/25684"
},
{
"additions": 71,
"body": 481,
"createdAt": "2021-04-09T10:24:05Z",
"deletions": 26,
"url": "https://github.com/mui-org/material-ui/pull/25680"
},
{
"additions": 137,
"body": 658,
"createdAt": "2021-04-09T09:31:37Z",
"deletions": 101,
"url": "https://github.com/mui-org/material-ui/pull/25679"
},
{
"additions": 4,
"body": 69,
"createdAt": "2021-04-08T17:17:13Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/25668"
},
{
"additions": 68,
"body": 2165,
"createdAt": "2021-04-08T11:00:12Z",
"deletions": 183,
"url": "https://github.com/facebook/react/pull/21205"
},
{
"additions": 4,
"body": 273,
"createdAt": "2021-04-08T10:08:34Z",
"deletions": 1,
"url": "https://github.com/facebook/react/pull/21204"
},
{
"additions": 59,
"body": 604,
"createdAt": "2021-04-07T06:56:03Z",
"deletions": 70,
"url": "https://github.com/bvaughn/react/pull/16"
},
{
"additions": 160,
"body": 294,
"createdAt": "2021-04-06T11:43:09Z",
"deletions": 22,
"url": "https://github.com/eps1lon/vax-notify/pull/17"
},
{
"additions": 4112,
"body": 0,
"createdAt": "2021-04-06T10:28:54Z",
"deletions": 377,
"url": "https://github.com/eps1lon/vax-notify/pull/16"
},
{
"additions": 2,
"body": 0,
"createdAt": "2021-04-06T08:53:09Z",
"deletions": 2,
"url": "https://github.com/eps1lon/vax-notify/pull/15"
},
{
"additions": 101,
"body": 139,
"createdAt": "2021-04-06T08:27:04Z",
"deletions": 8,
"url": "https://github.com/eps1lon/vax-notify/pull/14"
},
{
"additions": 12,
"body": 184,
"createdAt": "2021-04-06T07:51:37Z",
"deletions": 3,
"url": "https://github.com/eps1lon/vax-notify/pull/13"
},
{
"additions": 2,
"body": 94,
"createdAt": "2021-04-05T17:32:00Z",
"deletions": 2,
"url": "https://github.com/eps1lon/vax-notify/pull/12"
},
{
"additions": 2,
"body": 121,
"createdAt": "2021-04-05T17:19:01Z",
"deletions": 2,
"url": "https://github.com/typescript-cheatsheets/react/pull/400"
},
{
"additions": 1,
"body": 0,
"createdAt": "2021-04-05T17:00:41Z",
"deletions": 1,
"url": "https://github.com/eps1lon/vax-notify/pull/11"
},
{
"additions": 215,
"body": 0,
"createdAt": "2021-04-05T16:58:13Z",
"deletions": 13,
"url": "https://github.com/eps1lon/vax-notify/pull/10"
},
{
"additions": 315,
"body": 0,
"createdAt": "2021-03-31T12:36:37Z",
"deletions": 2,
"url": "https://github.com/eps1lon/vax-notify/pull/9"
},
{
"additions": 89,
"body": 0,
"createdAt": "2021-03-31T10:05:08Z",
"deletions": 83,
"url": "https://github.com/eps1lon/vax-notify/pull/7"
},
{
"additions": 5,
"body": 12,
"createdAt": "2021-03-31T09:57:06Z",
"deletions": 0,
"url": "https://github.com/eps1lon/vax-notify/pull/6"
},
{
"additions": 47,
"body": 0,
"createdAt": "2021-03-31T09:54:47Z",
"deletions": 0,
"url": "https://github.com/eps1lon/vax-notify/pull/5"
},
{
"additions": 2835,
"body": 68,
"createdAt": "2021-03-31T09:03:40Z",
"deletions": 222,
"url": "https://github.com/eps1lon/vax-notify/pull/4"
},
{
"additions": 1,
"body": 0,
"createdAt": "2021-03-31T08:05:50Z",
"deletions": 1,
"url": "https://github.com/eps1lon/vax-notify/pull/3"
},
{
"additions": 32,
"body": 0,
"createdAt": "2021-03-30T20:32:33Z",
"deletions": 3,
"url": "https://github.com/eps1lon/vax-notify/pull/2"
},
{
"additions": 56,
"body": 132,
"createdAt": "2021-03-26T11:37:24Z",
"deletions": 29,
"url": "https://github.com/mui-org/material-ui/pull/25512"
},
{
"additions": 182,
"body": 449,
"createdAt": "2021-03-25T11:55:29Z",
"deletions": 193,
"url": "https://github.com/mui-org/material-ui/pull/25498"
},
{
"additions": 124,
"body": 410,
"createdAt": "2021-03-24T16:01:57Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/25483"
},
{
"additions": 41,
"body": 359,
"createdAt": "2021-03-24T09:48:34Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/25476"
},
{
"additions": 193,
"body": 304,
"createdAt": "2021-03-23T10:15:06Z",
"deletions": 192,
"url": "https://github.com/mui-org/material-ui/pull/25473"
},
{
"additions": 837,
"body": 202,
"createdAt": "2021-03-22T16:01:47Z",
"deletions": 367,
"url": "https://github.com/mui-org/material-ui/pull/25470"
},
{
"additions": 4,
"body": 75,
"createdAt": "2021-03-22T13:47:07Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/25468"
},
{
"additions": 40,
"body": 276,
"createdAt": "2021-03-22T12:14:24Z",
"deletions": 42,
"url": "https://github.com/mui-org/material-ui/pull/25466"
},
{
"additions": 21,
"body": 477,
"createdAt": "2021-03-22T11:45:50Z",
"deletions": 28,
"url": "https://github.com/mui-org/material-ui/pull/25464"
},
{
"additions": 38,
"body": 294,
"createdAt": "2021-03-22T09:50:49Z",
"deletions": 67,
"url": "https://github.com/mui-org/material-ui/pull/25461"
},
{
"additions": 396,
"body": 401,
"createdAt": "2021-03-20T13:32:12Z",
"deletions": 136,
"url": "https://github.com/mui-org/material-ui/pull/25425"
},
{
"additions": 7,
"body": 297,
"createdAt": "2021-03-20T12:48:25Z",
"deletions": 7,
"url": "https://github.com/mui-org/material-ui/pull/25424"
},
{
"additions": 6,
"body": 354,
"createdAt": "2021-03-19T14:02:10Z",
"deletions": 59,
"url": "https://github.com/mui-org/material-ui/pull/25418"
},
{
"additions": 86,
"body": 1576,
"createdAt": "2021-03-19T08:55:20Z",
"deletions": 68,
"url": "https://github.com/mui-org/material-ui/pull/25416"
},
{
"additions": 13,
"body": 429,
"createdAt": "2021-03-18T12:33:00Z",
"deletions": 11,
"url": "https://github.com/mui-org/material-ui/pull/25406"
},
{
"additions": 327,
"body": 893,
"createdAt": "2021-03-18T12:15:53Z",
"deletions": 293,
"url": "https://github.com/mui-org/material-ui/pull/25405"
},
{
"additions": 39,
"body": 1055,
"createdAt": "2021-03-18T11:20:45Z",
"deletions": 27,
"url": "https://github.com/mui-org/material-ui/pull/25402"
},
{
"additions": 22,
"body": 197,
"createdAt": "2021-03-16T16:46:29Z",
"deletions": 18,
"url": "https://github.com/mui-org/material-ui/pull/25386"
},
{
"additions": 2,
"body": 302,
"createdAt": "2021-03-16T16:36:39Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/25385"
},
{
"additions": 12,
"body": 237,
"createdAt": "2021-03-15T15:36:14Z",
"deletions": 18,
"url": "https://github.com/mui-org/material-ui/pull/25373"
},
{
"additions": 4,
"body": 65,
"createdAt": "2021-03-15T14:56:51Z",
"deletions": 4,
"url": "https://github.com/webpack/webpack.js.org/pull/4723"
},
{
"additions": 210,
"body": 187,
"createdAt": "2021-03-15T10:45:36Z",
"deletions": 996,
"url": "https://github.com/mui-org/material-ui/pull/25369"
},
{
"additions": 4,
"body": 370,
"createdAt": "2021-03-15T09:06:53Z",
"deletions": 2,
"url": "https://github.com/facebook/react/pull/21005"
},
{
"additions": 4,
"body": 477,
"createdAt": "2021-03-12T08:58:30Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/25315"
},
{
"additions": 12,
"body": 495,
"createdAt": "2021-03-11T10:35:24Z",
"deletions": 11,
"url": "https://github.com/mui-org/material-ui/pull/25306"
},
{
"additions": 19,
"body": 123,
"createdAt": "2021-03-10T11:44:48Z",
"deletions": 12,
"url": "https://github.com/mui-org/material-ui/pull/25297"
},
{
"additions": 239,
"body": 319,
"createdAt": "2021-03-08T10:09:51Z",
"deletions": 181,
"url": "https://github.com/mui-org/material-ui/pull/25261"
},
{
"additions": 679,
"body": 541,
"createdAt": "2021-03-07T17:53:13Z",
"deletions": 9,
"url": "https://github.com/mui-org/material-ui/pull/25254"
},
{
"additions": 165,
"body": 362,
"createdAt": "2021-03-07T11:49:34Z",
"deletions": 119,
"url": "https://github.com/mui-org/material-ui/pull/25249"
},
{
"additions": 3,
"body": 39,
"createdAt": "2021-03-07T10:37:48Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/25248"
},
{
"additions": 103,
"body": 468,
"createdAt": "2021-03-05T14:23:52Z",
"deletions": 80,
"url": "https://github.com/mui-org/material-ui/pull/25209"
},
{
"additions": 24,
"body": 846,
"createdAt": "2021-03-05T09:27:47Z",
"deletions": 15,
"url": "https://github.com/bvaughn/react/pull/15"
},
{
"additions": 21,
"body": 724,
"createdAt": "2021-03-05T00:34:49Z",
"deletions": 1,
"url": "https://github.com/facebook/react/pull/20933"
},
{
"additions": 39,
"body": 142,
"createdAt": "2021-03-04T16:32:20Z",
"deletions": 23,
"url": "https://github.com/mui-org/material-ui/pull/25193"
},
{
"additions": 121,
"body": 125,
"createdAt": "2021-03-04T15:50:22Z",
"deletions": 11,
"url": "https://github.com/mui-org/material-ui/pull/25191"
},
{
"additions": 44,
"body": 179,
"createdAt": "2021-03-03T10:00:57Z",
"deletions": 42,
"url": "https://github.com/mui-org/material-ui/pull/25173"
},
{
"additions": 2036,
"body": 845,
"createdAt": "2021-03-03T08:54:07Z",
"deletions": 478,
"url": "https://github.com/mui-org/material-ui/pull/25172"
},
{
"additions": 6,
"body": 525,
"createdAt": "2021-03-02T17:25:04Z",
"deletions": 231,
"url": "https://github.com/mui-org/material-ui/pull/25162"
},
{
"additions": 23,
"body": 521,
"createdAt": "2021-03-02T12:30:00Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/25160"
},
{
"additions": 2,
"body": 1115,
"createdAt": "2021-03-01T12:22:56Z",
"deletions": 18,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/51488"
},
{
"additions": 426,
"body": 1736,
"createdAt": "2021-03-01T11:02:35Z",
"deletions": 16,
"url": "https://github.com/testing-library/dom-testing-library/pull/907"
},
{
"additions": 9,
"body": 216,
"createdAt": "2021-02-28T14:40:43Z",
"deletions": 10,
"url": "https://github.com/mui-org/material-ui/pull/25139"
},
{
"additions": 167,
"body": 341,
"createdAt": "2021-02-28T12:08:50Z",
"deletions": 170,
"url": "https://github.com/mui-org/material-ui/pull/25137"
},
{
"additions": 3,
"body": 297,
"createdAt": "2021-02-28T11:59:28Z",
"deletions": 13,
"url": "https://github.com/mui-org/material-ui/pull/25136"
},
{
"additions": 406,
"body": 593,
"createdAt": "2021-02-28T09:27:40Z",
"deletions": 343,
"url": "https://github.com/mui-org/material-ui/pull/25133"
},
{
"additions": 610,
"body": 113,
"createdAt": "2021-02-26T12:00:15Z",
"deletions": 19,
"url": "https://github.com/mui-org/material-ui/pull/25101"
},
{
"additions": 358,
"body": 193,
"createdAt": "2021-02-26T11:12:32Z",
"deletions": 125,
"url": "https://github.com/mui-org/material-ui/pull/25100"
},
{
"additions": 415,
"body": 265,
"createdAt": "2021-02-25T12:10:30Z",
"deletions": 70,
"url": "https://github.com/mui-org/material-ui/pull/25089"
},
{
"additions": 2637,
"body": 670,
"createdAt": "2021-02-24T17:10:22Z",
"deletions": 13,
"url": "https://github.com/mui-org/material-ui/pull/25085"
},
{
"additions": 3024,
"body": 695,
"createdAt": "2021-02-24T16:04:20Z",
"deletions": 11,
"url": "https://github.com/mui-org/material-ui/pull/25084"
},
{
"additions": 6,
"body": 423,
"createdAt": "2021-02-24T11:13:12Z",
"deletions": 5,
"url": "https://github.com/mui-org/material-ui/pull/25080"
},
{
"additions": 1,
"body": 100,
"createdAt": "2021-02-24T11:01:42Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/25079"
},
{
"additions": 4,
"body": 914,
"createdAt": "2021-02-22T11:20:11Z",
"deletions": 0,
"url": "https://github.com/popperjs/popper-core/pull/1253"
},
{
"additions": 16691,
"body": 1011,
"createdAt": "2021-02-22T11:00:12Z",
"deletions": 1682,
"url": "https://github.com/mui-org/material-ui/pull/25055"
},
{
"additions": 8,
"body": 1474,
"createdAt": "2021-02-21T12:34:43Z",
"deletions": 7,
"url": "https://github.com/mui-org/material-ui/pull/25044"
},
{
"additions": 116,
"body": 143,
"createdAt": "2021-02-21T12:22:21Z",
"deletions": 116,
"url": "https://github.com/mui-org/material-ui/pull/25043"
},
{
"additions": 78,
"body": 342,
"createdAt": "2021-02-19T20:25:36Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/25010"
},
{
"additions": 24,
"body": 1516,
"createdAt": "2021-02-19T18:31:24Z",
"deletions": 14,
"url": "https://github.com/testing-library/dom-testing-library/pull/900"
},
{
"additions": 6,
"body": 1158,
"createdAt": "2021-02-19T15:51:05Z",
"deletions": 0,
"url": "https://github.com/testing-library/dom-testing-library/pull/897"
},
{
"additions": 3,
"body": 438,
"createdAt": "2021-02-19T14:02:30Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/25006"
},
{
"additions": 113,
"body": 1233,
"createdAt": "2021-02-19T13:11:08Z",
"deletions": 246,
"url": "https://github.com/mui-org/material-ui/pull/25005"
},
{
"additions": 62,
"body": 502,
"createdAt": "2021-02-19T11:34:01Z",
"deletions": 46,
"url": "https://github.com/mui-org/material-ui/pull/25001"
},
{
"additions": 18,
"body": 278,
"createdAt": "2021-02-19T10:21:48Z",
"deletions": 14,
"url": "https://github.com/mui-org/material-ui/pull/24998"
},
{
"additions": 70,
"body": 1591,
"createdAt": "2021-02-17T14:11:47Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/24981"
},
{
"additions": 0,
"body": 565,
"createdAt": "2021-02-16T15:55:21Z",
"deletions": 44,
"url": "https://github.com/mui-org/material-ui/pull/24969"
},
{
"additions": 5,
"body": 485,
"createdAt": "2021-02-16T15:26:46Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/24967"
},
{
"additions": 53,
"body": 933,
"createdAt": "2021-02-16T14:14:01Z",
"deletions": 14,
"url": "https://github.com/mui-org/material-ui/pull/24963"
},
{
"additions": 41,
"body": 165,
"createdAt": "2021-02-16T10:25:28Z",
"deletions": 16,
"url": "https://github.com/mui-org/material-ui/pull/24960"
},
{
"additions": 6,
"body": 350,
"createdAt": "2021-02-15T17:20:41Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/24949"
},
{
"additions": 52,
"body": 2292,
"createdAt": "2021-02-15T10:20:39Z",
"deletions": 23,
"url": "https://github.com/mui-org/material-ui/pull/24942"
},
{
"additions": 13,
"body": 68,
"createdAt": "2021-02-14T15:13:49Z",
"deletions": 13,
"url": "https://github.com/mui-org/material-ui/pull/24934"
},
{
"additions": 3,
"body": 872,
"createdAt": "2021-02-14T11:42:06Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/24933"
},
{
"additions": 0,
"body": 546,
"createdAt": "2021-02-14T10:57:46Z",
"deletions": 110,
"url": "https://github.com/mui-org/material-ui/pull/24932"
},
{
"additions": 20,
"body": 166,
"createdAt": "2021-02-14T10:25:38Z",
"deletions": 11,
"url": "https://github.com/mui-org/material-ui/pull/24930"
},
{
"additions": 71,
"body": 76,
"createdAt": "2021-02-14T10:10:02Z",
"deletions": 71,
"url": "https://github.com/mui-org/material-ui/pull/24929"
},
{
"additions": 10,
"body": 314,
"createdAt": "2021-02-12T14:22:44Z",
"deletions": 5,
"url": "https://github.com/mui-org/material-ui/pull/24879"
},
{
"additions": 2,
"body": 925,
"createdAt": "2021-02-12T13:23:06Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/24877"
},
{
"additions": 35,
"body": 966,
"createdAt": "2021-02-12T11:15:32Z",
"deletions": 32,
"url": "https://github.com/mui-org/material-ui/pull/24873"
},
{
"additions": 144,
"body": 1318,
"createdAt": "2021-02-12T10:37:40Z",
"deletions": 5,
"url": "https://github.com/mui-org/material-ui/pull/24871"
},
{
"additions": 57,
"body": 231,
"createdAt": "2021-02-12T07:10:09Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/24869"
},
{
"additions": 38,
"body": 235,
"createdAt": "2021-02-11T15:59:51Z",
"deletions": 0,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1843"
},
{
"additions": 234,
"body": 505,
"createdAt": "2021-02-11T14:17:54Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/24863"
},
{
"additions": 16,
"body": 1359,
"createdAt": "2021-02-09T10:36:24Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/24844"
},
{
"additions": 25,
"body": 491,
"createdAt": "2021-02-09T09:03:48Z",
"deletions": 25,
"url": "https://github.com/mui-org/material-ui/pull/24842"
},
{
"additions": 181,
"body": 1168,
"createdAt": "2021-02-08T13:32:32Z",
"deletions": 124,
"url": "https://github.com/mui-org/material-ui/pull/24837"
},
{
"additions": 3,
"body": 215,
"createdAt": "2021-02-08T07:16:37Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/24834"
},
{
"additions": 7,
"body": 195,
"createdAt": "2021-02-08T06:19:38Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/24833"
},
{
"additions": 603,
"body": 411,
"createdAt": "2021-02-07T14:42:40Z",
"deletions": 623,
"url": "https://github.com/mui-org/material-ui/pull/24826"
},
{
"additions": 5,
"body": 408,
"createdAt": "2021-02-03T10:04:02Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/24755"
},
{
"additions": 77,
"body": 595,
"createdAt": "2021-02-02T15:14:36Z",
"deletions": 91,
"url": "https://github.com/mui-org/material-ui/pull/24747"
},
{
"additions": 3,
"body": 338,
"createdAt": "2021-02-02T15:11:58Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/24746"
},
{
"additions": 37,
"body": 638,
"createdAt": "2021-02-01T15:02:21Z",
"deletions": 98,
"url": "https://github.com/mui-org/material-ui/pull/24739"
},
{
"additions": 60,
"body": 435,
"createdAt": "2021-01-28T16:50:09Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/24676"
},
{
"additions": 29,
"body": 107,
"createdAt": "2021-01-28T10:36:34Z",
"deletions": 8,
"url": "https://github.com/mui-org/material-ui/pull/24667"
},
{
"additions": 1594,
"body": 410,
"createdAt": "2021-01-27T16:15:42Z",
"deletions": 19,
"url": "https://github.com/mui-org/material-ui/pull/24655"
},
{
"additions": 445,
"body": 1311,
"createdAt": "2021-01-27T16:03:26Z",
"deletions": 28,
"url": "https://github.com/mui-org/material-ui/pull/24653"
},
{
"additions": 90,
"body": 1020,
"createdAt": "2021-01-27T13:04:24Z",
"deletions": 3,
"url": "https://github.com/facebook/react/pull/20676"
},
{
"additions": 50,
"body": 1035,
"createdAt": "2021-01-26T20:58:55Z",
"deletions": 12,
"url": "https://github.com/testing-library/react-testing-library/pull/868"
},
{
"additions": 188,
"body": 1345,
"createdAt": "2021-01-26T15:54:46Z",
"deletions": 40,
"url": "https://github.com/mui-org/material-ui/pull/24635"
},
{
"additions": 2,
"body": 115,
"createdAt": "2021-01-26T14:19:36Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/24633"
},
{
"additions": 9,
"body": 0,
"createdAt": "2021-01-26T12:36:09Z",
"deletions": 6,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1763"
},
{
"additions": 4274,
"body": 164,
"createdAt": "2021-01-26T12:31:38Z",
"deletions": 4,
"url": "https://github.com/eps1lon/dependabot-clickable-commands/pull/25"
},
{
"additions": 2,
"body": 267,
"createdAt": "2021-01-26T11:37:51Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/24628"
},
{
"additions": 579,
"body": 962,
"createdAt": "2021-01-25T15:00:26Z",
"deletions": 129,
"url": "https://github.com/mui-org/material-ui/pull/24614"
},
{
"additions": 39,
"body": 456,
"createdAt": "2021-01-25T10:09:38Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/24610"
},
{
"additions": 97,
"body": 488,
"createdAt": "2021-01-23T12:53:35Z",
"deletions": 65,
"url": "https://github.com/mui-org/material-ui/pull/24565"
},
{
"additions": 33,
"body": 107,
"createdAt": "2021-01-23T12:14:22Z",
"deletions": 16,
"url": "https://github.com/mui-org/material-ui/pull/24564"
},
{
"additions": 63,
"body": 315,
"createdAt": "2021-01-22T09:46:29Z",
"deletions": 23,
"url": "https://github.com/mui-org/material-ui/pull/24545"
},
{
"additions": 7,
"body": 925,
"createdAt": "2021-01-21T14:35:45Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/24531"
},
{
"additions": 64,
"body": 648,
"createdAt": "2021-01-21T13:13:21Z",
"deletions": 46,
"url": "https://github.com/mui-org/material-ui/pull/24526"
},
{
"additions": 13,
"body": 593,
"createdAt": "2021-01-20T16:52:56Z",
"deletions": 10,
"url": "https://github.com/mui-org/material-ui/pull/24517"
},
{
"additions": 5,
"body": 185,
"createdAt": "2021-01-20T15:39:07Z",
"deletions": 5,
"url": "https://github.com/mui-org/material-ui/pull/24515"
},
{
"additions": 234,
"body": 879,
"createdAt": "2021-01-20T09:57:52Z",
"deletions": 194,
"url": "https://github.com/mui-org/material-ui/pull/24504"
},
{
"additions": 8,
"body": 643,
"createdAt": "2021-01-19T15:42:36Z",
"deletions": 3,
"url": "https://github.com/facebook/react/pull/20620"
},
{
"additions": 2413,
"body": 875,
"createdAt": "2021-01-19T13:15:08Z",
"deletions": 110,
"url": "https://github.com/mui-org/material-ui/pull/24497"
},
{
"additions": 297,
"body": 286,
"createdAt": "2021-01-19T11:33:45Z",
"deletions": 334,
"url": "https://github.com/facebook/react/pull/20618"
},
{
"additions": 27,
"body": 367,
"createdAt": "2021-01-18T17:55:12Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/24490"
},
{
"additions": 1165,
"body": 1715,
"createdAt": "2021-01-18T09:45:42Z",
"deletions": 1036,
"url": "https://github.com/mui-org/material-ui/pull/24481"
},
{
"additions": 1,
"body": 517,
"createdAt": "2021-01-17T14:41:55Z",
"deletions": 1,
"url": "https://github.com/facebook/react/pull/20606"
},
{
"additions": 8,
"body": 196,
"createdAt": "2021-01-17T13:00:42Z",
"deletions": 8,
"url": "https://github.com/mui-org/material-ui/pull/24476"
},
{
"additions": 140,
"body": 99,
"createdAt": "2021-01-15T10:57:01Z",
"deletions": 443,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1718"
},
{
"additions": 49,
"body": 422,
"createdAt": "2021-01-14T17:30:47Z",
"deletions": 30,
"url": "https://github.com/mui-org/material-ui/pull/24417"
},
{
"additions": 2,
"body": 637,
"createdAt": "2021-01-14T11:50:00Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/24411"
},
{
"additions": 24,
"body": 560,
"createdAt": "2021-01-13T18:12:46Z",
"deletions": 19,
"url": "https://github.com/mnajdova/material-ui/pull/22"
},
{
"additions": 70,
"body": 355,
"createdAt": "2021-01-13T16:34:50Z",
"deletions": 57,
"url": "https://github.com/mui-org/material-ui/pull/24396"
},
{
"additions": 28,
"body": 138,
"createdAt": "2021-01-13T12:57:36Z",
"deletions": 27,
"url": "https://github.com/eps1lon/solverfox.dev/pull/116"
},
{
"additions": 30,
"body": 115,
"createdAt": "2021-01-13T12:12:30Z",
"deletions": 26,
"url": "https://github.com/eps1lon/solverfox.dev/pull/115"
},
{
"additions": 5,
"body": 37,
"createdAt": "2021-01-13T12:03:30Z",
"deletions": 3,
"url": "https://github.com/eps1lon/solverfox.dev/pull/114"
},
{
"additions": 85,
"body": 119,
"createdAt": "2021-01-13T10:53:07Z",
"deletions": 4,
"url": "https://github.com/eps1lon/solverfox.dev/pull/111"
},
{
"additions": 14,
"body": 0,
"createdAt": "2021-01-13T07:53:13Z",
"deletions": 2,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1702"
},
{
"additions": 2,
"body": 599,
"createdAt": "2021-01-13T05:28:03Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/24393"
},
{
"additions": 2,
"body": 547,
"createdAt": "2021-01-13T05:06:18Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/24392"
},
{
"additions": 28,
"body": 352,
"createdAt": "2021-01-13T03:30:20Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/24391"
},
{
"additions": 144,
"body": 693,
"createdAt": "2021-01-12T09:36:12Z",
"deletions": 11,
"url": "https://github.com/mui-org/material-ui/pull/24380"
},
{
"additions": 20,
"body": 43,
"createdAt": "2021-01-11T12:52:26Z",
"deletions": 0,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/42"
},
{
"additions": 55,
"body": 1127,
"createdAt": "2021-01-11T09:22:29Z",
"deletions": 24,
"url": "https://github.com/mui-org/material-ui/pull/24367"
},
{
"additions": 30,
"body": 1184,
"createdAt": "2021-01-11T09:01:09Z",
"deletions": 24,
"url": "https://github.com/mui-org/material-ui/pull/24366"
},
{
"additions": 5,
"body": 216,
"createdAt": "2021-01-11T08:15:51Z",
"deletions": 1,
"url": "https://github.com/circleci/circleci-docs/pull/5016"
},
{
"additions": 15,
"body": 744,
"createdAt": "2021-01-11T07:37:46Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/24364"
},
{
"additions": 7,
"body": 740,
"createdAt": "2021-01-08T15:05:41Z",
"deletions": 12,
"url": "https://github.com/mui-org/material-ui/pull/24319"
},
{
"additions": 4,
"body": 381,
"createdAt": "2021-01-08T14:31:55Z",
"deletions": 8,
"url": "https://github.com/mui-org/material-ui/pull/24318"
},
{
"additions": 224,
"body": 2407,
"createdAt": "2021-01-08T11:08:20Z",
"deletions": 246,
"url": "https://github.com/mui-org/material-ui/pull/24315"
},
{
"additions": 39,
"body": 69,
"createdAt": "2021-01-08T07:07:00Z",
"deletions": 4,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/41"
},
{
"additions": 9,
"body": 0,
"createdAt": "2021-01-08T06:20:52Z",
"deletions": 171,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/40"
},
{
"additions": 144,
"body": 55,
"createdAt": "2021-01-08T06:08:29Z",
"deletions": 313,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/39"
},
{
"additions": 3,
"body": 621,
"createdAt": "2021-01-08T05:41:52Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/24313"
},
{
"additions": 5,
"body": 271,
"createdAt": "2021-01-07T09:52:52Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/24303"
},
{
"additions": 4,
"body": 456,
"createdAt": "2021-01-06T19:25:16Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/24296"
},
{
"additions": 19,
"body": 72,
"createdAt": "2021-01-06T18:49:49Z",
"deletions": 5,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/38"
},
{
"additions": 613,
"body": 1547,
"createdAt": "2021-01-06T12:51:04Z",
"deletions": 118,
"url": "https://github.com/mui-org/material-ui/pull/24289"
},
{
"additions": 77,
"body": 2256,
"createdAt": "2021-01-05T10:52:20Z",
"deletions": 31,
"url": "https://github.com/mui-org/material-ui/pull/24275"
},
{
"additions": 2,
"body": 2159,
"createdAt": "2021-01-05T09:52:27Z",
"deletions": 2,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/50405"
},
{
"additions": 271,
"body": 825,
"createdAt": "2021-01-04T13:37:07Z",
"deletions": 31,
"url": "https://github.com/mui-org/material-ui/pull/24267"
},
{
"additions": 241,
"body": 25,
"createdAt": "2021-01-04T11:00:24Z",
"deletions": 189,
"url": "https://github.com/mui-org/material-ui/pull/24263"
},
{
"additions": 28,
"body": 982,
"createdAt": "2021-01-03T20:31:58Z",
"deletions": 25,
"url": "https://github.com/mui-org/material-ui/pull/24257"
},
{
"additions": 4,
"body": 33,
"createdAt": "2021-01-03T19:14:24Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/24255"
},
{
"additions": 6,
"body": 348,
"createdAt": "2021-01-03T10:04:20Z",
"deletions": 7,
"url": "https://github.com/mui-org/material-ui/pull/24233"
},
{
"additions": 205,
"body": 431,
"createdAt": "2021-01-02T16:24:07Z",
"deletions": 1,
"url": "https://github.com/facebook/jest/pull/10995"
},
{
"additions": 5,
"body": 0,
"createdAt": "2021-01-02T13:12:21Z",
"deletions": 5,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1642"
},
{
"additions": 33,
"body": 314,
"createdAt": "2020-12-30T20:06:54Z",
"deletions": 7,
"url": "https://github.com/mui-org/material-ui/pull/24200"
},
{
"additions": 4645,
"body": 50,
"createdAt": "2020-12-30T15:25:56Z",
"deletions": 28,
"url": "https://github.com/eps1lon/testing-library-envinfo/pull/2"
},
{
"additions": 2,
"body": 440,
"createdAt": "2020-12-30T14:53:15Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/24193"
},
{
"additions": 3,
"body": 280,
"createdAt": "2020-12-30T14:47:39Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/24192"
},
{
"additions": 1,
"body": 346,
"createdAt": "2020-12-30T14:43:09Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/24191"
},
{
"additions": 2,
"body": 340,
"createdAt": "2020-12-30T14:28:22Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/24190"
},
{
"additions": 72,
"body": 561,
"createdAt": "2020-12-30T11:59:27Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/24188"
},
{
"additions": 6,
"body": 515,
"createdAt": "2020-12-29T11:30:07Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/24168"
},
{
"additions": 1,
"body": 309,
"createdAt": "2020-12-29T10:20:08Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/24165"
},
{
"additions": 754,
"body": 1216,
"createdAt": "2020-12-28T20:06:02Z",
"deletions": 606,
"url": "https://github.com/mui-org/material-ui/pull/24158"
},
{
"additions": 28,
"body": 274,
"createdAt": "2020-12-28T12:38:58Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/24155"
},
{
"additions": 1,
"body": 176,
"createdAt": "2020-12-28T10:09:38Z",
"deletions": 1,
"url": "https://github.com/mdn/content/pull/677"
},
{
"additions": 270,
"body": 102,
"createdAt": "2020-12-27T15:14:44Z",
"deletions": 56,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1609"
},
{
"additions": 957,
"body": 243,
"createdAt": "2020-12-22T11:17:50Z",
"deletions": 304,
"url": "https://github.com/mui-org/material-ui/pull/24099"
},
{
"additions": 216,
"body": 451,
"createdAt": "2020-12-20T10:41:14Z",
"deletions": 234,
"url": "https://github.com/mui-org/material-ui/pull/24070"
},
{
"additions": 192,
"body": 60,
"createdAt": "2020-12-18T22:45:05Z",
"deletions": 170,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/36"
},
{
"additions": 13,
"body": 648,
"createdAt": "2020-12-15T18:19:29Z",
"deletions": 24,
"url": "https://github.com/facebook/react/pull/20470"
},
{
"additions": 21,
"body": 282,
"createdAt": "2020-12-15T12:12:05Z",
"deletions": 19,
"url": "https://github.com/mui-org/material-ui/pull/24022"
},
{
"additions": 4,
"body": 308,
"createdAt": "2020-12-15T11:49:11Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/24021"
},
{
"additions": 4613,
"body": 2017,
"createdAt": "2020-12-14T22:28:44Z",
"deletions": 1794,
"url": "https://github.com/facebook/react/pull/20463"
},
{
"additions": 41,
"body": 80,
"createdAt": "2020-12-13T15:09:45Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/24002"
},
{
"additions": 230,
"body": 223,
"createdAt": "2020-12-13T14:22:34Z",
"deletions": 8,
"url": "https://github.com/reactjs/react-transition-group/pull/690"
},
{
"additions": 21,
"body": 69,
"createdAt": "2020-12-13T13:23:09Z",
"deletions": 22,
"url": "https://github.com/mui-org/material-ui/pull/24000"
},
{
"additions": 73,
"body": 81,
"createdAt": "2020-12-12T19:39:10Z",
"deletions": 2,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1497"
},
{
"additions": 11,
"body": 663,
"createdAt": "2020-12-12T17:55:29Z",
"deletions": 12,
"url": "https://github.com/mui-org/material-ui/pull/23974"
},
{
"additions": 39,
"body": 56,
"createdAt": "2020-12-11T22:03:29Z",
"deletions": 0,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1493"
},
{
"additions": 2,
"body": 1687,
"createdAt": "2020-12-11T15:55:57Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/23963"
},
{
"additions": 24,
"body": 140,
"createdAt": "2020-12-10T19:09:50Z",
"deletions": 16,
"url": "https://github.com/mui-org/material-ui/pull/23944"
},
{
"additions": 1,
"body": 912,
"createdAt": "2020-12-10T14:11:11Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/23932"
},
{
"additions": 7,
"body": 301,
"createdAt": "2020-12-09T21:51:11Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/23918"
},
{
"additions": 22,
"body": 666,
"createdAt": "2020-12-09T20:46:18Z",
"deletions": 136,
"url": "https://github.com/mui-org/material-ui/pull/23917"
},
{
"additions": 8,
"body": 426,
"createdAt": "2020-12-09T16:05:26Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/23910"
},
{
"additions": 191,
"body": 515,
"createdAt": "2020-12-09T10:49:49Z",
"deletions": 165,
"url": "https://github.com/mui-org/material-ui/pull/23906"
},
{
"additions": 13,
"body": 41,
"createdAt": "2020-12-09T09:44:04Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/23905"
},
{
"additions": 180,
"body": 1283,
"createdAt": "2020-12-08T14:39:47Z",
"deletions": 131,
"url": "https://github.com/mui-org/material-ui/pull/23895"
},
{
"additions": 91,
"body": 131,
"createdAt": "2020-12-07T21:05:10Z",
"deletions": 33,
"url": "https://github.com/mui-org/material-ui/pull/23883"
},
{
"additions": 71,
"body": 0,
"createdAt": "2020-12-07T19:57:00Z",
"deletions": 1,
"url": "https://github.com/eps1lon/testing-library-envinfo/pull/1"
},
{
"additions": 96,
"body": 1418,
"createdAt": "2020-12-07T15:54:43Z",
"deletions": 9,
"url": "https://github.com/mui-org/material-ui/pull/23881"
},
{
"additions": 42,
"body": 228,
"createdAt": "2020-12-06T20:22:30Z",
"deletions": 73,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1459"
},
{
"additions": 75,
"body": 54,
"createdAt": "2020-12-06T19:46:19Z",
"deletions": 32,
"url": "https://github.com/eps1lon/screen-reader-testing-library/pull/16"
},
{
"additions": 228,
"body": 348,
"createdAt": "2020-12-06T17:40:10Z",
"deletions": 0,
"url": "https://github.com/facebook/jest/pull/10922"
},
{
"additions": 5,
"body": 0,
"createdAt": "2020-12-06T14:50:03Z",
"deletions": 2,
"url": "https://github.com/eps1lon/screen-reader-testing-library/pull/14"
},
{
"additions": 123,
"body": 0,
"createdAt": "2020-12-06T14:33:09Z",
"deletions": 38,
"url": "https://github.com/eps1lon/screen-reader-testing-library/pull/13"
},
{
"additions": 2,
"body": 95,
"createdAt": "2020-12-06T12:50:09Z",
"deletions": 4,
"url": "https://github.com/eps1lon/screen-reader-testing-library/pull/11"
},
{
"additions": 933,
"body": 0,
"createdAt": "2020-12-06T00:17:21Z",
"deletions": 10,
"url": "https://github.com/eps1lon/screen-reader-testing-library/pull/10"
},
{
"additions": 1,
"body": 0,
"createdAt": "2020-12-05T22:32:03Z",
"deletions": 1,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1456"
},
{
"additions": 115,
"body": 44,
"createdAt": "2020-12-05T20:43:40Z",
"deletions": 184,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1455"
},
{
"additions": 488,
"body": 412,
"createdAt": "2020-12-05T16:55:31Z",
"deletions": 22,
"url": "https://github.com/eps1lon/screen-reader-testing-library/pull/9"
},
{
"additions": 35,
"body": 543,
"createdAt": "2020-12-04T11:25:14Z",
"deletions": 37,
"url": "https://github.com/mui-org/material-ui/pull/23838"
},
{
"additions": 34,
"body": 503,
"createdAt": "2020-12-03T22:18:33Z",
"deletions": 11,
"url": "https://github.com/mui-org/material-ui/pull/23828"
},
{
"additions": 9,
"body": 0,
"createdAt": "2020-12-03T18:20:35Z",
"deletions": 1,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/34"
},
{
"additions": 34,
"body": 177,
"createdAt": "2020-12-03T17:10:41Z",
"deletions": 6,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/33"
},
{
"additions": 30,
"body": 0,
"createdAt": "2020-12-03T17:00:34Z",
"deletions": 30,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/32"
},
{
"additions": 1,
"body": 486,
"createdAt": "2020-12-03T10:55:11Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/23823"
},
{
"additions": 1,
"body": 383,
"createdAt": "2020-12-02T20:12:49Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/23819"
},
{
"additions": 8,
"body": 452,
"createdAt": "2020-12-02T20:09:54Z",
"deletions": 10,
"url": "https://github.com/mui-org/material-ui/pull/23818"
},
{
"additions": 926,
"body": 71,
"createdAt": "2020-12-02T15:30:57Z",
"deletions": 32,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1454"
},
{
"additions": 19,
"body": 88,
"createdAt": "2020-12-01T21:18:35Z",
"deletions": 7,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1451"
},
{
"additions": 6,
"body": 185,
"createdAt": "2020-12-01T20:08:47Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/23805"
},
{
"additions": 11,
"body": 0,
"createdAt": "2020-12-01T19:52:17Z",
"deletions": 24,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1445"
},
{
"additions": 41,
"body": 0,
"createdAt": "2020-12-01T19:43:44Z",
"deletions": 125,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1444"
},
{
"additions": 9,
"body": 70,
"createdAt": "2020-12-01T14:49:03Z",
"deletions": 0,
"url": "https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/pull/760"
},
{
"additions": 3,
"body": 111,
"createdAt": "2020-12-01T13:34:54Z",
"deletions": 3,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1441"
},
{
"additions": 24,
"body": 0,
"createdAt": "2020-12-01T13:27:09Z",
"deletions": 27,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1440"
},
{
"additions": 3,
"body": 53,
"createdAt": "2020-12-01T12:36:08Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/23799"
},
{
"additions": 1,
"body": 0,
"createdAt": "2020-11-30T22:31:13Z",
"deletions": 1,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1430"
},
{
"additions": 250,
"body": 74,
"createdAt": "2020-11-30T22:27:19Z",
"deletions": 2,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1429"
},
{
"additions": 233,
"body": 442,
"createdAt": "2020-11-30T19:08:22Z",
"deletions": 147,
"url": "https://github.com/mui-org/material-ui/pull/23791"
},
{
"additions": 511,
"body": 280,
"createdAt": "2020-11-30T13:33:12Z",
"deletions": 411,
"url": "https://github.com/eps1lon/screen-reader-testing-library/pull/8"
},
{
"additions": 31,
"body": 0,
"createdAt": "2020-11-30T13:02:41Z",
"deletions": 8,
"url": "https://github.com/eps1lon/screen-reader-testing-library/pull/7"
},
{
"additions": 4,
"body": 337,
"createdAt": "2020-11-29T17:35:57Z",
"deletions": 4,
"url": "https://github.com/facebook/jest/pull/10889"
},
{
"additions": 254,
"body": 0,
"createdAt": "2020-11-29T14:41:45Z",
"deletions": 24,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1428"
},
{
"additions": 13014,
"body": 0,
"createdAt": "2020-11-29T12:41:23Z",
"deletions": 12948,
"url": "https://github.com/eps1lon/screen-reader-testing-library/pull/6"
},
{
"additions": 22,
"body": 484,
"createdAt": "2020-11-26T15:11:01Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/23736"
},
{
"additions": 5,
"body": 351,
"createdAt": "2020-11-26T14:06:42Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/23734"
},
{
"additions": 87,
"body": 745,
"createdAt": "2020-11-26T12:46:37Z",
"deletions": 85,
"url": "https://github.com/mui-org/material-ui/pull/23732"
},
{
"additions": 4,
"body": 0,
"createdAt": "2020-11-26T09:02:50Z",
"deletions": 2,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/31"
},
{
"additions": 20,
"body": 0,
"createdAt": "2020-11-25T23:56:27Z",
"deletions": 27,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/30"
},
{
"additions": 3,
"body": 87,
"createdAt": "2020-11-25T23:02:16Z",
"deletions": 1,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/29"
},
{
"additions": 149,
"body": 70,
"createdAt": "2020-11-25T22:02:29Z",
"deletions": 37,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/28"
},
{
"additions": 189,
"body": 70,
"createdAt": "2020-11-25T19:58:37Z",
"deletions": 111,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/27"
},
{
"additions": 118,
"body": 0,
"createdAt": "2020-11-25T18:25:35Z",
"deletions": 33,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/26"
},
{
"additions": 65,
"body": 167,
"createdAt": "2020-11-25T16:16:21Z",
"deletions": 49,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/25"
},
{
"additions": 380,
"body": 536,
"createdAt": "2020-11-25T14:58:16Z",
"deletions": 424,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/24"
},
{
"additions": 110,
"body": 629,
"createdAt": "2020-11-25T13:02:23Z",
"deletions": 32,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/23"
},
{
"additions": 2,
"body": 111,
"createdAt": "2020-11-25T10:34:57Z",
"deletions": 2,
"url": "https://github.com/typescript-cheatsheets/react/pull/372"
},
{
"additions": 12,
"body": 633,
"createdAt": "2020-11-25T10:08:09Z",
"deletions": 3,
"url": "https://github.com/typescript-cheatsheets/react/pull/371"
},
{
"additions": 4,
"body": 517,
"createdAt": "2020-11-25T09:32:09Z",
"deletions": 17,
"url": "https://github.com/typescript-cheatsheets/react/pull/370"
},
{
"additions": 74,
"body": 1477,
"createdAt": "2020-11-24T12:51:28Z",
"deletions": 75,
"url": "https://github.com/mui-org/material-ui/pull/23699"
},
{
"additions": 4602,
"body": 232,
"createdAt": "2020-11-23T13:22:41Z",
"deletions": 131,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/21"
},
{
"additions": 1,
"body": 161,
"createdAt": "2020-11-23T09:51:39Z",
"deletions": 1,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/493"
},
{
"additions": 6,
"body": 1570,
"createdAt": "2020-11-21T15:15:50Z",
"deletions": 0,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/49717"
},
{
"additions": 14,
"body": 247,
"createdAt": "2020-11-20T15:44:16Z",
"deletions": 5,
"url": "https://github.com/facebook/react/pull/20306"
},
{
"additions": 21,
"body": 942,
"createdAt": "2020-11-20T14:12:48Z",
"deletions": 28,
"url": "https://github.com/mui-org/material-ui/pull/23633"
},
{
"additions": 15,
"body": 1992,
"createdAt": "2020-11-20T11:45:58Z",
"deletions": 3,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/49701"
},
{
"additions": 77,
"body": 236,
"createdAt": "2020-11-19T18:48:50Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/23623"
},
{
"additions": 55,
"body": 347,
"createdAt": "2020-11-19T16:58:26Z",
"deletions": 42,
"url": "https://github.com/mui-org/material-ui/pull/23619"
},
{
"additions": 14,
"body": 682,
"createdAt": "2020-11-19T16:24:41Z",
"deletions": 32,
"url": "https://github.com/mui-org/material-ui/pull/23618"
},
{
"additions": 87,
"body": 1078,
"createdAt": "2020-11-18T20:04:02Z",
"deletions": 53,
"url": "https://github.com/mui-org/material-ui/pull/23607"
},
{
"additions": 2,
"body": 697,
"createdAt": "2020-11-18T16:40:37Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/23602"
},
{
"additions": 17,
"body": 137,
"createdAt": "2020-11-18T15:12:42Z",
"deletions": 6,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1388"
},
{
"additions": 22,
"body": 784,
"createdAt": "2020-11-18T11:36:14Z",
"deletions": 105,
"url": "https://github.com/mui-org/material-ui/pull/23595"
},
{
"additions": 3,
"body": 100,
"createdAt": "2020-11-18T11:21:29Z",
"deletions": 2,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/20"
},
{
"additions": 74,
"body": 149,
"createdAt": "2020-11-18T10:20:43Z",
"deletions": 21,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/19"
},
{
"additions": 180,
"body": 257,
"createdAt": "2020-11-17T20:14:06Z",
"deletions": 5,
"url": "https://github.com/mui-org/material-ui/pull/23588"
},
{
"additions": 97,
"body": 542,
"createdAt": "2020-11-17T16:11:06Z",
"deletions": 61,
"url": "https://github.com/mui-org/material-ui/pull/23586"
},
{
"additions": 11839,
"body": 583,
"createdAt": "2020-11-17T13:21:43Z",
"deletions": 14345,
"url": "https://github.com/mui-org/material-ui/pull/23581"
},
{
"additions": 4,
"body": 490,
"createdAt": "2020-11-17T10:14:19Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/23576"
},
{
"additions": 4,
"body": 0,
"createdAt": "2020-11-17T09:04:35Z",
"deletions": 4,
"url": "https://github.com/eps1lon/solverfox.dev/pull/91"
},
{
"additions": 77,
"body": 513,
"createdAt": "2020-11-16T17:24:36Z",
"deletions": 56,
"url": "https://github.com/mui-org/material-ui/pull/23571"
},
{
"additions": 199,
"body": 781,
"createdAt": "2020-11-16T12:45:55Z",
"deletions": 160,
"url": "https://github.com/mui-org/material-ui/pull/23568"
},
{
"additions": 20,
"body": 103,
"createdAt": "2020-11-16T11:50:40Z",
"deletions": 55,
"url": "https://github.com/mui-org/material-ui/pull/23567"
},
{
"additions": 3,
"body": 88,
"createdAt": "2020-11-16T09:46:22Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/23564"
},
{
"additions": 1,
"body": 116,
"createdAt": "2020-11-15T12:20:28Z",
"deletions": 30,
"url": "https://github.com/mui-org/material-ui/pull/23556"
},
{
"additions": 32,
"body": 116,
"createdAt": "2020-11-15T12:05:54Z",
"deletions": 28,
"url": "https://github.com/mui-org/material-ui/pull/23555"
},
{
"additions": 2,
"body": 58,
"createdAt": "2020-11-14T16:04:11Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/23516"
},
{
"additions": 3759,
"body": 23,
"createdAt": "2020-11-14T15:34:06Z",
"deletions": 2787,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/18"
},
{
"additions": 1144,
"body": 379,
"createdAt": "2020-11-14T10:26:12Z",
"deletions": 2653,
"url": "https://github.com/mui-org/material-ui/pull/23512"
},
{
"additions": 29,
"body": 201,
"createdAt": "2020-11-13T18:00:07Z",
"deletions": 24,
"url": "https://github.com/mui-org/material-ui/pull/23504"
},
{
"additions": 692,
"body": 2610,
"createdAt": "2020-11-13T10:23:45Z",
"deletions": 294,
"url": "https://github.com/mui-org/material-ui/pull/23500"
},
{
"additions": 50,
"body": 131,
"createdAt": "2020-11-13T09:34:03Z",
"deletions": 46,
"url": "https://github.com/mui-org/material-ui/pull/23498"
},
{
"additions": 9,
"body": 839,
"createdAt": "2020-11-12T16:48:21Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/23491"
},
{
"additions": 37,
"body": 350,
"createdAt": "2020-11-12T13:18:14Z",
"deletions": 9,
"url": "https://github.com/mui-org/material-ui/pull/23488"
},
{
"additions": 2,
"body": 119,
"createdAt": "2020-11-12T12:08:29Z",
"deletions": 0,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/17"
},
{
"additions": 273,
"body": 1398,
"createdAt": "2020-11-10T21:09:24Z",
"deletions": 172,
"url": "https://github.com/mui-org/material-ui/pull/23475"
},
{
"additions": 36,
"body": 227,
"createdAt": "2020-11-10T20:29:12Z",
"deletions": 8,
"url": "https://github.com/mui-org/material-ui/pull/23474"
},
{
"additions": 14,
"body": 522,
"createdAt": "2020-11-10T11:04:45Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/23464"
},
{
"additions": 5,
"body": 164,
"createdAt": "2020-11-10T10:44:55Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/23463"
},
{
"additions": 10,
"body": 180,
"createdAt": "2020-11-10T09:13:44Z",
"deletions": 3,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1312"
},
{
"additions": 27,
"body": 1352,
"createdAt": "2020-11-09T16:12:15Z",
"deletions": 22,
"url": "https://github.com/mui-org/material-ui/pull/23459"
},
{
"additions": 6,
"body": 116,
"createdAt": "2020-11-09T14:47:45Z",
"deletions": 4,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1308"
},
{
"additions": 5,
"body": 193,
"createdAt": "2020-11-09T14:39:44Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/23456"
},
{
"additions": 10,
"body": 34,
"createdAt": "2020-11-09T14:19:04Z",
"deletions": 12,
"url": "https://github.com/mui-org/material-ui/pull/23455"
},
{
"additions": 57,
"body": 293,
"createdAt": "2020-11-08T12:14:45Z",
"deletions": 22,
"url": "https://github.com/mui-org/material-ui/pull/23445"
},
{
"additions": 18,
"body": 493,
"createdAt": "2020-11-03T18:01:36Z",
"deletions": 50,
"url": "https://github.com/mui-org/material-ui/pull/23382"
},
{
"additions": 7,
"body": 104,
"createdAt": "2020-11-03T17:34:04Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/23381"
},
{
"additions": 23,
"body": 625,
"createdAt": "2020-11-03T13:00:08Z",
"deletions": 37,
"url": "https://github.com/mui-org/material-ui/pull/23377"
},
{
"additions": 17,
"body": 459,
"createdAt": "2020-11-02T21:07:23Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/23372"
},
{
"additions": 85,
"body": 1016,
"createdAt": "2020-11-02T14:17:22Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/23369"
},
{
"additions": 114,
"body": 590,
"createdAt": "2020-11-02T10:51:56Z",
"deletions": 50,
"url": "https://github.com/mui-org/material-ui/pull/23367"
},
{
"additions": 7,
"body": 461,
"createdAt": "2020-10-30T14:30:36Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/23321"
},
{
"additions": 122,
"body": 2639,
"createdAt": "2020-10-29T23:57:59Z",
"deletions": 59,
"url": "https://github.com/mui-org/material-ui/pull/23315"
},
{
"additions": 8,
"body": 287,
"createdAt": "2020-10-29T20:22:40Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/23312"
},
{
"additions": 33,
"body": 489,
"createdAt": "2020-10-29T15:38:22Z",
"deletions": 32,
"url": "https://github.com/mui-org/material-ui/pull/23311"
},
{
"additions": 151,
"body": 285,
"createdAt": "2020-10-28T21:46:52Z",
"deletions": 0,
"url": "https://github.com/dequelabs/axe-core/pull/2609"
},
{
"additions": 4,
"body": 247,
"createdAt": "2020-10-28T10:43:24Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/23292"
},
{
"additions": 270,
"body": 363,
"createdAt": "2020-10-27T23:57:58Z",
"deletions": 177,
"url": "https://github.com/mui-org/material-ui/pull/23285"
},
{
"additions": 1,
"body": 1165,
"createdAt": "2020-10-27T22:08:47Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/23283"
},
{
"additions": 166,
"body": 240,
"createdAt": "2020-10-27T20:48:31Z",
"deletions": 122,
"url": "https://github.com/mui-org/material-ui/pull/23281"
},
{
"additions": 4,
"body": 836,
"createdAt": "2020-10-27T16:10:00Z",
"deletions": 1,
"url": "https://github.com/testing-library/react-testing-library/pull/809"
},
{
"additions": 44,
"body": 1712,
"createdAt": "2020-10-27T15:44:33Z",
"deletions": 43,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/49152"
},
{
"additions": 58,
"body": 61,
"createdAt": "2020-10-27T10:26:37Z",
"deletions": 9,
"url": "https://github.com/mnajdova/material-ui/pull/11"
},
{
"additions": 16,
"body": 54,
"createdAt": "2020-10-26T15:44:31Z",
"deletions": 44,
"url": "https://github.com/mui-org/material-ui/pull/23271"
},
{
"additions": 206,
"body": 331,
"createdAt": "2020-10-26T14:43:03Z",
"deletions": 27,
"url": "https://github.com/mui-org/material-ui/pull/23269"
},
{
"additions": 6,
"body": 607,
"createdAt": "2020-10-26T07:56:52Z",
"deletions": 11,
"url": "https://github.com/mui-org/material-ui/pull/23263"
},
{
"additions": 9,
"body": 206,
"createdAt": "2020-10-26T05:34:34Z",
"deletions": 21,
"url": "https://github.com/mui-org/material-ui/pull/23262"
},
{
"additions": 64,
"body": 486,
"createdAt": "2020-10-22T12:38:16Z",
"deletions": 21,
"url": "https://github.com/mui-org/material-ui/pull/23209"
},
{
"additions": 3,
"body": 47,
"createdAt": "2020-10-21T00:02:00Z",
"deletions": 2,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/465"
},
{
"additions": 6,
"body": 14,
"createdAt": "2020-10-20T23:35:43Z",
"deletions": 1,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/464"
},
{
"additions": 6507,
"body": 1761,
"createdAt": "2020-10-20T22:58:53Z",
"deletions": 5,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/48971"
},
{
"additions": 118,
"body": 1673,
"createdAt": "2020-10-20T15:51:40Z",
"deletions": 84,
"url": "https://github.com/mui-org/material-ui/pull/23181"
},
{
"additions": 0,
"body": 753,
"createdAt": "2020-10-20T10:02:16Z",
"deletions": 0,
"url": "https://github.com/testing-library/dom-testing-library/pull/796"
},
{
"additions": 5087,
"body": 413,
"createdAt": "2020-10-19T16:17:28Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/23166"
},
{
"additions": 139,
"body": 364,
"createdAt": "2020-10-19T11:22:38Z",
"deletions": 112,
"url": "https://github.com/mui-org/material-ui/pull/23159"
},
{
"additions": 37,
"body": 614,
"createdAt": "2020-10-19T10:38:27Z",
"deletions": 15,
"url": "https://github.com/mui-org/material-ui/pull/23157"
},
{
"additions": 527,
"body": 225,
"createdAt": "2020-10-18T20:18:28Z",
"deletions": 497,
"url": "https://github.com/mui-org/material-ui/pull/23147"
},
{
"additions": 16,
"body": 290,
"createdAt": "2020-10-17T16:13:37Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/23113"
},
{
"additions": 7,
"body": 81,
"createdAt": "2020-10-17T15:58:30Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/23112"
},
{
"additions": 44,
"body": 612,
"createdAt": "2020-10-17T12:54:27Z",
"deletions": 23,
"url": "https://github.com/mui-org/material-ui/pull/23110"
},
{
"additions": 630,
"body": 875,
"createdAt": "2020-10-16T23:00:15Z",
"deletions": 598,
"url": "https://github.com/mui-org/material-ui/pull/23108"
},
{
"additions": 44,
"body": 727,
"createdAt": "2020-10-16T20:28:53Z",
"deletions": 34,
"url": "https://github.com/mui-org/material-ui/pull/23106"
},
{
"additions": 24,
"body": 78,
"createdAt": "2020-10-16T19:44:17Z",
"deletions": 19,
"url": "https://github.com/mui-org/material-ui/pull/23104"
},
{
"additions": 118,
"body": 1209,
"createdAt": "2020-10-16T11:20:52Z",
"deletions": 98,
"url": "https://github.com/mui-org/material-ui/pull/23092"
},
{
"additions": 6,
"body": 494,
"createdAt": "2020-10-16T08:58:35Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/23083"
},
{
"additions": 40,
"body": 876,
"createdAt": "2020-10-15T12:43:04Z",
"deletions": 35,
"url": "https://github.com/mui-org/material-ui/pull/23068"
},
{
"additions": 29,
"body": 859,
"createdAt": "2020-10-15T09:49:53Z",
"deletions": 23,
"url": "https://github.com/mui-org/material-ui/pull/23064"
},
{
"additions": 111,
"body": 727,
"createdAt": "2020-10-15T08:33:43Z",
"deletions": 65,
"url": "https://github.com/mui-org/material-ui/pull/23063"
},
{
"additions": 158,
"body": 1503,
"createdAt": "2020-10-14T15:18:52Z",
"deletions": 41,
"url": "https://github.com/mui-org/material-ui/pull/23054"
},
{
"additions": 5,
"body": 102,
"createdAt": "2020-10-13T08:24:33Z",
"deletions": 21,
"url": "https://github.com/mui-org/material-ui/pull/23026"
},
{
"additions": 14,
"body": 377,
"createdAt": "2020-10-12T22:09:01Z",
"deletions": 8,
"url": "https://github.com/mui-org/material-ui/pull/23023"
},
{
"additions": 66,
"body": 2891,
"createdAt": "2020-10-12T17:59:34Z",
"deletions": 0,
"url": "https://github.com/facebook/react/pull/20002"
},
{
"additions": 68,
"body": 337,
"createdAt": "2020-10-11T16:23:04Z",
"deletions": 533,
"url": "https://github.com/mui-org/material-ui/pull/22983"
},
{
"additions": 43,
"body": 240,
"createdAt": "2020-10-11T14:46:15Z",
"deletions": 654,
"url": "https://github.com/mui-org/material-ui/pull/22979"
},
{
"additions": 1,
"body": 208,
"createdAt": "2020-10-09T11:22:38Z",
"deletions": 0,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/447"
},
{
"additions": 24,
"body": 126,
"createdAt": "2020-10-09T10:48:15Z",
"deletions": 3,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/446"
},
{
"additions": 1,
"body": 580,
"createdAt": "2020-10-08T18:59:06Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/22948"
},
{
"additions": 6,
"body": 228,
"createdAt": "2020-10-08T16:20:13Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/22943"
},
{
"additions": 32,
"body": 219,
"createdAt": "2020-10-08T08:43:35Z",
"deletions": 90,
"url": "https://github.com/mnajdova/material-ui/pull/9"
},
{
"additions": 36,
"body": 341,
"createdAt": "2020-10-07T12:32:24Z",
"deletions": 15,
"url": "https://github.com/mui-org/material-ui/pull/22926"
},
{
"additions": 31,
"body": 1282,
"createdAt": "2020-10-07T10:26:28Z",
"deletions": 7,
"url": "https://github.com/mui-org/material-ui/pull/22924"
},
{
"additions": 8,
"body": 311,
"createdAt": "2020-10-06T11:55:19Z",
"deletions": 13,
"url": "https://github.com/mui-org/material-ui/pull/22909"
},
{
"additions": 49,
"body": 642,
"createdAt": "2020-10-06T08:54:46Z",
"deletions": 35,
"url": "https://github.com/mui-org/material-ui/pull/22907"
},
{
"additions": 122,
"body": 454,
"createdAt": "2020-10-06T08:17:51Z",
"deletions": 126,
"url": "https://github.com/mui-org/material-ui/pull/22905"
},
{
"additions": 6,
"body": 104,
"createdAt": "2020-10-06T08:01:02Z",
"deletions": 44,
"url": "https://github.com/mui-org/material-ui/pull/22904"
},
{
"additions": 21,
"body": 496,
"createdAt": "2020-10-05T19:23:04Z",
"deletions": 13,
"url": "https://github.com/mui-org/material-ui/pull/22899"
},
{
"additions": 62,
"body": 253,
"createdAt": "2020-10-05T17:25:42Z",
"deletions": 99,
"url": "https://github.com/mui-org/material-ui/pull/22896"
},
{
"additions": 58,
"body": 160,
"createdAt": "2020-10-05T08:04:22Z",
"deletions": 39,
"url": "https://github.com/mui-org/material-ui/pull/22890"
},
{
"additions": 79,
"body": 275,
"createdAt": "2020-10-04T17:48:57Z",
"deletions": 17,
"url": "https://github.com/mui-org/material-ui/pull/22878"
},
{
"additions": 28,
"body": 0,
"createdAt": "2020-10-04T12:36:05Z",
"deletions": 28,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1080"
},
{
"additions": 9,
"body": 55,
"createdAt": "2020-10-03T18:11:05Z",
"deletions": 9,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1053"
},
{
"additions": 16312,
"body": 0,
"createdAt": "2020-10-03T15:43:32Z",
"deletions": 41992,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1048"
},
{
"additions": 7485,
"body": 72,
"createdAt": "2020-10-03T14:03:55Z",
"deletions": 116,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1046"
},
{
"additions": 147400,
"body": 0,
"createdAt": "2020-10-03T12:24:51Z",
"deletions": 1,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1045"
},
{
"additions": 63,
"body": 74,
"createdAt": "2020-10-03T10:09:13Z",
"deletions": 846721,
"url": "https://github.com/eps1lon/screen-reader-testing-library/pull/5"
},
{
"additions": 18,
"body": 672,
"createdAt": "2020-10-02T09:28:43Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/22836"
},
{
"additions": 3,
"body": 79,
"createdAt": "2020-10-02T08:06:58Z",
"deletions": 0,
"url": "https://github.com/babel/website/pull/2381"
},
{
"additions": 468,
"body": 1788,
"createdAt": "2020-09-29T21:05:35Z",
"deletions": 336,
"url": "https://github.com/mui-org/material-ui/pull/22814"
},
{
"additions": 5,
"body": 52,
"createdAt": "2020-09-29T13:55:38Z",
"deletions": 27,
"url": "https://github.com/dmtrKovalenko/material-ui/pull/34"
},
{
"additions": 0,
"body": 29,
"createdAt": "2020-09-29T09:12:39Z",
"deletions": 9,
"url": "https://github.com/mui-org/material-ui/pull/22802"
},
{
"additions": 27,
"body": 311,
"createdAt": "2020-09-29T08:59:14Z",
"deletions": 18,
"url": "https://github.com/mui-org/material-ui/pull/22801"
},
{
"additions": 27,
"body": 117,
"createdAt": "2020-09-29T07:52:27Z",
"deletions": 8,
"url": "https://github.com/mui-org/material-ui/pull/22800"
},
{
"additions": 119,
"body": 168,
"createdAt": "2020-09-28T13:32:00Z",
"deletions": 242,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/16"
},
{
"additions": 43,
"body": 134,
"createdAt": "2020-09-28T13:07:48Z",
"deletions": 15,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/15"
},
{
"additions": 14,
"body": 183,
"createdAt": "2020-09-28T11:49:46Z",
"deletions": 17,
"url": "https://github.com/dmtrKovalenko/material-ui/pull/33"
},
{
"additions": 11,
"body": 83,
"createdAt": "2020-09-28T08:40:27Z",
"deletions": 9,
"url": "https://github.com/mui-org/material-ui/pull/22789"
},
{
"additions": 10,
"body": 602,
"createdAt": "2020-09-27T19:13:13Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/22781"
},
{
"additions": 114,
"body": 15,
"createdAt": "2020-09-27T17:31:07Z",
"deletions": 46,
"url": "https://github.com/eps1lon/screen-reader-testing-library/pull/4"
},
{
"additions": 3,
"body": 50,
"createdAt": "2020-09-27T15:33:45Z",
"deletions": 0,
"url": "https://github.com/eps1lon/screen-reader-testing-library/pull/2"
},
{
"additions": 477598,
"body": 0,
"createdAt": "2020-09-27T10:48:24Z",
"deletions": 477518,
"url": "https://github.com/eps1lon/screen-reader-testing-library/pull/1"
},
{
"additions": 17,
"body": 284,
"createdAt": "2020-09-25T16:33:43Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/22738"
},
{
"additions": 17,
"body": 649,
"createdAt": "2020-09-25T12:38:59Z",
"deletions": 5,
"url": "https://github.com/mui-org/material-ui/pull/22732"
},
{
"additions": 276,
"body": 800,
"createdAt": "2020-09-25T08:58:07Z",
"deletions": 76,
"url": "https://github.com/mui-org/material-ui/pull/22729"
},
{
"additions": 95,
"body": 63,
"createdAt": "2020-09-24T14:35:39Z",
"deletions": 28,
"url": "https://github.com/mui-org/material-ui/pull/22720"
},
{
"additions": 10,
"body": 0,
"createdAt": "2020-09-24T14:07:47Z",
"deletions": 7,
"url": "https://github.com/mbrookes/material-ui/pull/4"
},
{
"additions": 21,
"body": 361,
"createdAt": "2020-09-24T11:37:47Z",
"deletions": 48,
"url": "https://github.com/mui-org/material-ui/pull/22716"
},
{
"additions": 16,
"body": 319,
"createdAt": "2020-09-23T14:26:47Z",
"deletions": 48,
"url": "https://github.com/mui-org/material-ui/pull/22706"
},
{
"additions": 10,
"body": 391,
"createdAt": "2020-09-21T18:28:39Z",
"deletions": 1,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/438"
},
{
"additions": 1,
"body": 15,
"createdAt": "2020-09-21T15:38:30Z",
"deletions": 11,
"url": "https://github.com/mui-org/material-ui/pull/22686"
},
{
"additions": 1,
"body": 823,
"createdAt": "2020-09-21T09:16:43Z",
"deletions": 11,
"url": "https://github.com/mui-org/material-ui/pull/22676"
},
{
"additions": 106,
"body": 128,
"createdAt": "2020-09-21T06:17:22Z",
"deletions": 17,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/436"
},
{
"additions": 13,
"body": 0,
"createdAt": "2020-09-18T07:52:37Z",
"deletions": 13,
"url": "https://github.com/mnajdova/material-ui/pull/6"
},
{
"additions": 39,
"body": 463,
"createdAt": "2020-09-18T06:54:02Z",
"deletions": 20,
"url": "https://github.com/mui-org/material-ui/pull/22639"
},
{
"additions": 20,
"body": 143,
"createdAt": "2020-09-17T10:47:41Z",
"deletions": 10,
"url": "https://github.com/mui-org/material-ui/pull/22627"
},
{
"additions": 16,
"body": 717,
"createdAt": "2020-09-16T18:56:35Z",
"deletions": 14,
"url": "https://github.com/mui-org/material-ui/pull/22624"
},
{
"additions": 193,
"body": 866,
"createdAt": "2020-09-16T16:53:09Z",
"deletions": 167,
"url": "https://github.com/mui-org/material-ui/pull/22619"
},
{
"additions": 64,
"body": 772,
"createdAt": "2020-09-16T12:15:25Z",
"deletions": 13,
"url": "https://github.com/mui-org/material-ui/pull/22616"
},
{
"additions": 41,
"body": 1137,
"createdAt": "2020-09-16T08:51:19Z",
"deletions": 22,
"url": "https://github.com/mui-org/material-ui/pull/22613"
},
{
"additions": 11,
"body": 217,
"createdAt": "2020-09-15T14:04:10Z",
"deletions": 31,
"url": "https://github.com/mui-org/material-ui/pull/22606"
},
{
"additions": 1,
"body": 53,
"createdAt": "2020-09-14T08:58:27Z",
"deletions": 1,
"url": "https://github.com/reactjs/reactjs.org/pull/3260"
},
{
"additions": 2,
"body": 1194,
"createdAt": "2020-09-13T16:35:25Z",
"deletions": 2,
"url": "https://github.com/testing-library/dom-testing-library/pull/767"
},
{
"additions": 17,
"body": 1067,
"createdAt": "2020-09-13T16:15:14Z",
"deletions": 21,
"url": "https://github.com/testing-library/react-testing-library/pull/786"
},
{
"additions": 73,
"body": 773,
"createdAt": "2020-09-12T12:27:21Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/22573"
},
{
"additions": 2,
"body": 432,
"createdAt": "2020-09-12T10:48:20Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/22571"
},
{
"additions": 50,
"body": 134,
"createdAt": "2020-09-11T12:40:52Z",
"deletions": 53,
"url": "https://github.com/fkling/astexplorer/pull/535"
},
{
"additions": 116,
"body": 920,
"createdAt": "2020-09-11T10:33:04Z",
"deletions": 39,
"url": "https://github.com/facebook/react/pull/19815"
},
{
"additions": 244,
"body": 486,
"createdAt": "2020-09-09T08:40:02Z",
"deletions": 36,
"url": "https://github.com/facebook/react/pull/19792"
},
{
"additions": 4,
"body": 82,
"createdAt": "2020-09-07T09:24:28Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/22523"
},
{
"additions": 106,
"body": 320,
"createdAt": "2020-09-06T10:25:02Z",
"deletions": 109,
"url": "https://github.com/mui-org/material-ui/pull/22517"
},
{
"additions": 150,
"body": 67,
"createdAt": "2020-09-05T10:11:23Z",
"deletions": 1,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/13"
},
{
"additions": 2,
"body": 73,
"createdAt": "2020-09-04T08:29:11Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/22475"
},
{
"additions": 2,
"body": 219,
"createdAt": "2020-09-04T08:12:51Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/22474"
},
{
"additions": 82,
"body": 144,
"createdAt": "2020-09-03T15:00:17Z",
"deletions": 78,
"url": "https://github.com/mui-org/material-ui/pull/22465"
},
{
"additions": 12,
"body": 475,
"createdAt": "2020-09-03T14:02:26Z",
"deletions": 73,
"url": "https://github.com/mui-org/material-ui/pull/22464"
},
{
"additions": 39,
"body": 370,
"createdAt": "2020-09-03T13:18:56Z",
"deletions": 35,
"url": "https://github.com/mui-org/material-ui/pull/22463"
},
{
"additions": 19,
"body": 736,
"createdAt": "2020-09-03T09:08:10Z",
"deletions": 8,
"url": "https://github.com/mui-org/material-ui/pull/22459"
},
{
"additions": 1,
"body": 144,
"createdAt": "2020-09-03T07:46:46Z",
"deletions": 1,
"url": "https://github.com/testing-library/dom-testing-library/pull/762"
},
{
"additions": 55,
"body": 787,
"createdAt": "2020-09-02T15:31:43Z",
"deletions": 11,
"url": "https://github.com/mui-org/material-ui/pull/22455"
},
{
"additions": 1191,
"body": 1329,
"createdAt": "2020-09-02T08:34:31Z",
"deletions": 80,
"url": "https://github.com/mui-org/material-ui/pull/22447"
},
{
"additions": 1,
"body": 0,
"createdAt": "2020-09-01T05:17:19Z",
"deletions": 1,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/825"
},
{
"additions": 59,
"body": 110,
"createdAt": "2020-08-31T09:37:41Z",
"deletions": 65,
"url": "https://github.com/oliviertassinari/material-ui/pull/11"
},
{
"additions": 151,
"body": 308,
"createdAt": "2020-08-28T14:36:54Z",
"deletions": 101,
"url": "https://github.com/mui-org/material-ui/pull/22393"
},
{
"additions": 1,
"body": 173,
"createdAt": "2020-08-28T13:32:48Z",
"deletions": 68,
"url": "https://github.com/mui-org/material-ui/pull/22391"
},
{
"additions": 44,
"body": 77,
"createdAt": "2020-08-28T08:37:44Z",
"deletions": 56,
"url": "https://github.com/mui-org/material-ui/pull/22388"
},
{
"additions": 61,
"body": 1313,
"createdAt": "2020-08-27T18:18:58Z",
"deletions": 42,
"url": "https://github.com/mui-org/material-ui/pull/22382"
},
{
"additions": 71,
"body": 634,
"createdAt": "2020-08-27T11:15:42Z",
"deletions": 17,
"url": "https://github.com/mui-org/material-ui/pull/22376"
},
{
"additions": 6,
"body": 629,
"createdAt": "2020-08-27T09:40:35Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/22374"
},
{
"additions": 12,
"body": 296,
"createdAt": "2020-08-26T13:28:55Z",
"deletions": 5,
"url": "https://github.com/mui-org/material-ui/pull/22369"
},
{
"additions": 121,
"body": 321,
"createdAt": "2020-08-26T12:39:58Z",
"deletions": 71,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/406"
},
{
"additions": 1,
"body": 31,
"createdAt": "2020-08-25T17:51:26Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/22360"
},
{
"additions": 13,
"body": 446,
"createdAt": "2020-08-25T13:58:35Z",
"deletions": 12,
"url": "https://github.com/mui-org/material-ui/pull/22355"
},
{
"additions": 42,
"body": 0,
"createdAt": "2020-08-24T17:57:26Z",
"deletions": 0,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/404"
},
{
"additions": 2,
"body": 150,
"createdAt": "2020-08-23T17:16:58Z",
"deletions": 1,
"url": "https://github.com/reactjs/reactjs.org/pull/3224"
},
{
"additions": 2,
"body": 181,
"createdAt": "2020-08-23T10:24:44Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/22339"
},
{
"additions": 2886,
"body": 1105,
"createdAt": "2020-08-22T12:17:51Z",
"deletions": 1316,
"url": "https://github.com/mui-org/material-ui/pull/22312"
},
{
"additions": 91,
"body": 1472,
"createdAt": "2020-08-21T10:37:40Z",
"deletions": 79,
"url": "https://github.com/testing-library/react-testing-library/pull/768"
},
{
"additions": 12,
"body": 559,
"createdAt": "2020-08-21T09:07:12Z",
"deletions": 34,
"url": "https://github.com/mui-org/material-ui/pull/22297"
},
{
"additions": 13,
"body": 315,
"createdAt": "2020-08-20T14:55:54Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/22291"
},
{
"additions": 32,
"body": 502,
"createdAt": "2020-08-20T14:33:37Z",
"deletions": 62,
"url": "https://github.com/mui-org/material-ui/pull/22290"
},
{
"additions": 18,
"body": 0,
"createdAt": "2020-08-18T20:34:37Z",
"deletions": 6,
"url": "https://github.com/yarnplugins/yarn-plugin-deduplicate/pull/11"
},
{
"additions": 762,
"body": 0,
"createdAt": "2020-08-18T19:11:56Z",
"deletions": 2,
"url": "https://github.com/yarnplugins/yarn-plugin-deduplicate/pull/10"
},
{
"additions": 2,
"body": 1085,
"createdAt": "2020-08-18T19:02:04Z",
"deletions": 73,
"url": "https://github.com/mui-org/material-ui/pull/22270"
},
{
"additions": 7,
"body": 61,
"createdAt": "2020-08-18T14:26:44Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/22263"
},
{
"additions": 9,
"body": 413,
"createdAt": "2020-08-18T14:15:00Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/22262"
},
{
"additions": 43,
"body": 122,
"createdAt": "2020-08-18T14:03:34Z",
"deletions": 173,
"url": "https://github.com/mui-org/material-ui/pull/22260"
},
{
"additions": 12,
"body": 515,
"createdAt": "2020-08-17T09:12:31Z",
"deletions": 8,
"url": "https://github.com/tensorflow/tfjs-models/pull/510"
},
{
"additions": 98,
"body": 61,
"createdAt": "2020-08-15T21:42:45Z",
"deletions": 0,
"url": "https://github.com/eps1lon/solverfox.dev/pull/47"
},
{
"additions": 0,
"body": 61,
"createdAt": "2020-08-15T21:06:25Z",
"deletions": 0,
"url": "https://github.com/eps1lon/solverfox.dev/pull/45"
},
{
"additions": 498,
"body": 116,
"createdAt": "2020-08-15T20:43:26Z",
"deletions": 10,
"url": "https://github.com/eps1lon/solverfox.dev/pull/44"
},
{
"additions": 20,
"body": 56,
"createdAt": "2020-08-15T19:12:55Z",
"deletions": 69,
"url": "https://github.com/eps1lon/solverfox.dev/pull/43"
},
{
"additions": 6,
"body": 220,
"createdAt": "2020-08-14T11:32:20Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/22196"
},
{
"additions": 75,
"body": 515,
"createdAt": "2020-08-14T11:19:14Z",
"deletions": 65,
"url": "https://github.com/mui-org/material-ui/pull/22195"
},
{
"additions": 9,
"body": 432,
"createdAt": "2020-08-13T19:56:45Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/22185"
},
{
"additions": 105,
"body": 548,
"createdAt": "2020-08-13T12:38:15Z",
"deletions": 75,
"url": "https://github.com/mui-org/material-ui/pull/22179"
},
{
"additions": 44,
"body": 172,
"createdAt": "2020-08-12T18:17:53Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/22172"
},
{
"additions": 47,
"body": 1435,
"createdAt": "2020-08-12T12:56:21Z",
"deletions": 1,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/46692"
},
{
"additions": 21,
"body": 12,
"createdAt": "2020-08-11T12:19:24Z",
"deletions": 0,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/382"
},
{
"additions": 199,
"body": 1001,
"createdAt": "2020-08-11T11:04:40Z",
"deletions": 18,
"url": "https://github.com/mui-org/material-ui/pull/22155"
},
{
"additions": 10,
"body": 81,
"createdAt": "2020-08-10T22:07:33Z",
"deletions": 0,
"url": "https://github.com/testing-library/testing-library-docs/pull/565"
},
{
"additions": 36,
"body": 1177,
"createdAt": "2020-08-10T21:01:28Z",
"deletions": 4,
"url": "https://github.com/testing-library/dom-testing-library/pull/736"
},
{
"additions": 123,
"body": 210,
"createdAt": "2020-08-10T19:46:33Z",
"deletions": 84,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/380"
},
{
"additions": 20,
"body": 513,
"createdAt": "2020-08-10T12:26:49Z",
"deletions": 20,
"url": "https://github.com/mui-org/material-ui/pull/22143"
},
{
"additions": 6,
"body": 280,
"createdAt": "2020-08-10T08:36:13Z",
"deletions": 1,
"url": "https://github.com/facebook/react/pull/19568"
},
{
"additions": 4,
"body": 22,
"createdAt": "2020-08-09T19:52:21Z",
"deletions": 12742,
"url": "https://github.com/eps1lon/solverfox.dev/pull/30"
},
{
"additions": 24,
"body": 193,
"createdAt": "2020-08-09T11:33:44Z",
"deletions": 37,
"url": "https://github.com/eps1lon/solverfox.dev/pull/24"
},
{
"additions": 21,
"body": 92,
"createdAt": "2020-08-09T11:24:08Z",
"deletions": 1,
"url": "https://github.com/eps1lon/solverfox.dev/pull/23"
},
{
"additions": 33,
"body": 75,
"createdAt": "2020-08-09T10:14:42Z",
"deletions": 0,
"url": "https://github.com/eps1lon/solverfox.dev/pull/16"
},
{
"additions": 5094,
"body": 122,
"createdAt": "2020-08-09T09:55:53Z",
"deletions": 5686,
"url": "https://github.com/eps1lon/solverfox.dev/pull/15"
},
{
"additions": 11,
"body": 226,
"createdAt": "2020-08-09T09:49:15Z",
"deletions": 39,
"url": "https://github.com/mui-org/material-ui/pull/22135"
},
{
"additions": 95,
"body": 405,
"createdAt": "2020-08-08T20:38:45Z",
"deletions": 69,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/368"
},
{
"additions": 137,
"body": 346,
"createdAt": "2020-08-08T19:46:03Z",
"deletions": 89,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/367"
},
{
"additions": 36,
"body": 818,
"createdAt": "2020-08-08T18:17:37Z",
"deletions": 36,
"url": "https://github.com/dperini/nwsapi/pull/37"
},
{
"additions": 127,
"body": 161,
"createdAt": "2020-08-08T16:03:04Z",
"deletions": 154,
"url": "https://github.com/mui-org/material-ui/pull/22111"
},
{
"additions": 13,
"body": 84,
"createdAt": "2020-08-08T15:28:42Z",
"deletions": 11,
"url": "https://github.com/mbrookes/material-ui/pull/3"
},
{
"additions": 61,
"body": 512,
"createdAt": "2020-08-08T14:03:58Z",
"deletions": 40,
"url": "https://github.com/facebook/react/pull/19564"
},
{
"additions": 241,
"body": 746,
"createdAt": "2020-08-08T07:56:19Z",
"deletions": 41,
"url": "https://github.com/facebook/react/pull/19561"
},
{
"additions": 321,
"body": 0,
"createdAt": "2020-08-07T22:09:47Z",
"deletions": 150,
"url": "https://github.com/mui-org/material-ui/pull/22105"
},
{
"additions": 187,
"body": 1254,
"createdAt": "2020-08-07T17:29:27Z",
"deletions": 53,
"url": "https://github.com/mui-org/material-ui/pull/22102"
},
{
"additions": 21,
"body": 713,
"createdAt": "2020-08-07T12:43:47Z",
"deletions": 22,
"url": "https://github.com/eps1lon/actions-label-merge-conflict/pull/31"
},
{
"additions": 19,
"body": 848,
"createdAt": "2020-08-07T10:10:11Z",
"deletions": 31,
"url": "https://github.com/mui-org/material-ui/pull/22098"
},
{
"additions": 228,
"body": 703,
"createdAt": "2020-08-06T18:39:18Z",
"deletions": 71,
"url": "https://github.com/mui-org/material-ui/pull/22093"
},
{
"additions": 4,
"body": 154,
"createdAt": "2020-08-06T17:57:42Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/22092"
},
{
"additions": 86,
"body": 83,
"createdAt": "2020-08-06T12:49:36Z",
"deletions": 7,
"url": "https://github.com/mui-org/material-ui/pull/22090"
},
{
"additions": 317,
"body": 83,
"createdAt": "2020-08-05T13:24:43Z",
"deletions": 12,
"url": "https://github.com/mui-org/material-ui/pull/22076"
},
{
"additions": 20,
"body": 2216,
"createdAt": "2020-08-04T19:06:58Z",
"deletions": 5,
"url": "https://github.com/testing-library/react-testing-library/pull/758"
},
{
"additions": 27,
"body": 2120,
"createdAt": "2020-08-04T18:39:12Z",
"deletions": 0,
"url": "https://github.com/testing-library/react-testing-library/pull/757"
},
{
"additions": 12,
"body": 452,
"createdAt": "2020-08-04T08:45:40Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/22065"
},
{
"additions": 21,
"body": 170,
"createdAt": "2020-08-04T07:37:08Z",
"deletions": 18,
"url": "https://github.com/eps1lon/actions-label-merge-conflict/pull/29"
},
{
"additions": 161,
"body": 61,
"createdAt": "2020-08-04T06:43:11Z",
"deletions": 111,
"url": "https://github.com/eps1lon/actions-label-merge-conflict/pull/28"
},
{
"additions": 7,
"body": 133,
"createdAt": "2020-08-04T06:24:18Z",
"deletions": 6,
"url": "https://github.com/eps1lon/actions-label-merge-conflict/pull/27"
},
{
"additions": 46,
"body": 147,
"createdAt": "2020-08-04T06:15:04Z",
"deletions": 5,
"url": "https://github.com/eps1lon/actions-label-merge-conflict/pull/26"
},
{
"additions": 348,
"body": 251,
"createdAt": "2020-08-03T14:58:08Z",
"deletions": 108,
"url": "https://github.com/mui-org/material-ui/pull/22055"
},
{
"additions": 31,
"body": 1642,
"createdAt": "2020-08-03T09:19:52Z",
"deletions": 32,
"url": "https://github.com/emotion-js/emotion/pull/1956"
},
{
"additions": 6,
"body": 372,
"createdAt": "2020-08-03T08:45:30Z",
"deletions": 5,
"url": "https://github.com/cssinjs/jss/pull/1379"
},
{
"additions": 37,
"body": 320,
"createdAt": "2020-08-02T17:31:49Z",
"deletions": 24,
"url": "https://github.com/mui-org/material-ui/pull/22048"
},
{
"additions": 132,
"body": 90,
"createdAt": "2020-08-01T20:48:38Z",
"deletions": 74,
"url": "https://github.com/mui-org/material-ui/pull/22023"
},
{
"additions": 16,
"body": 1320,
"createdAt": "2020-08-01T10:13:43Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui-pickers/pull/2055"
},
{
"additions": 43,
"body": 287,
"createdAt": "2020-08-01T09:52:00Z",
"deletions": 325,
"url": "https://github.com/mui-org/material-ui-pickers/pull/2054"
},
{
"additions": 59,
"body": 22,
"createdAt": "2020-07-31T20:37:59Z",
"deletions": 53,
"url": "https://github.com/mui-org/material-ui-pickers/pull/2053"
},
{
"additions": 2,
"body": 144,
"createdAt": "2020-07-31T18:13:56Z",
"deletions": 20,
"url": "https://github.com/mui-org/material-ui/pull/22007"
},
{
"additions": 9,
"body": 176,
"createdAt": "2020-07-31T07:42:29Z",
"deletions": 27,
"url": "https://github.com/mui-org/material-ui/pull/22005"
},
{
"additions": 3,
"body": 419,
"createdAt": "2020-07-30T13:59:38Z",
"deletions": 3,
"url": "https://github.com/kentcdodds/kentcdodds.com/pull/507"
},
{
"additions": 43,
"body": 174,
"createdAt": "2020-07-30T13:32:28Z",
"deletions": 14,
"url": "https://github.com/mui-org/material-ui/pull/22002"
},
{
"additions": 1,
"body": 102,
"createdAt": "2020-07-30T06:52:42Z",
"deletions": 25,
"url": "https://github.com/mui-org/material-ui/pull/21999"
},
{
"additions": 2,
"body": 0,
"createdAt": "2020-07-30T06:47:15Z",
"deletions": 2,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/354"
},
{
"additions": 170,
"body": 0,
"createdAt": "2020-07-29T18:37:03Z",
"deletions": 3,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/352"
},
{
"additions": 507,
"body": 1266,
"createdAt": "2020-07-29T08:45:39Z",
"deletions": 581,
"url": "https://github.com/mui-org/material-ui/pull/21990"
},
{
"additions": 134,
"body": 209,
"createdAt": "2020-07-28T08:52:12Z",
"deletions": 126,
"url": "https://github.com/mui-org/material-ui/pull/21975"
},
{
"additions": 13,
"body": 662,
"createdAt": "2020-07-28T08:32:21Z",
"deletions": 305,
"url": "https://github.com/mui-org/material-ui/pull/21974"
},
{
"additions": 59,
"body": 148,
"createdAt": "2020-07-28T08:21:50Z",
"deletions": 20,
"url": "https://github.com/mui-org/material-ui/pull/21972"
},
{
"additions": 4,
"body": 0,
"createdAt": "2020-07-28T06:58:24Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/21970"
},
{
"additions": 238,
"body": 712,
"createdAt": "2020-07-27T21:31:18Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/21963"
},
{
"additions": 1,
"body": 10,
"createdAt": "2020-07-27T10:43:03Z",
"deletions": 1,
"url": "https://github.com/eps1lon/dependabot-clickable-commands/pull/20"
},
{
"additions": 1,
"body": 55,
"createdAt": "2020-07-23T13:00:16Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/21891"
},
{
"additions": 6,
"body": 24,
"createdAt": "2020-07-23T12:51:32Z",
"deletions": 4,
"url": "https://github.com/eps1lon/actions-label-merge-conflict/pull/23"
},
{
"additions": 103,
"body": 181,
"createdAt": "2020-07-23T06:26:20Z",
"deletions": 80,
"url": "https://github.com/mui-org/material-ui/pull/21888"
},
{
"additions": 36,
"body": 209,
"createdAt": "2020-07-22T11:33:11Z",
"deletions": 36,
"url": "https://github.com/mui-org/material-ui/pull/21883"
},
{
"additions": 21,
"body": 1316,
"createdAt": "2020-07-21T20:59:22Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/21879"
},
{
"additions": 563,
"body": 292,
"createdAt": "2020-07-21T17:47:18Z",
"deletions": 547,
"url": "https://github.com/mui-org/material-ui/pull/21876"
},
{
"additions": 4,
"body": 215,
"createdAt": "2020-07-21T16:31:51Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/21875"
},
{
"additions": 29,
"body": 51,
"createdAt": "2020-07-21T13:11:40Z",
"deletions": 16,
"url": "https://github.com/yarnplugins/yarn-plugin-deduplicate/pull/8"
},
{
"additions": 804,
"body": 560,
"createdAt": "2020-07-21T10:08:32Z",
"deletions": 938,
"url": "https://github.com/mui-org/material-ui/pull/21868"
},
{
"additions": 57,
"body": 270,
"createdAt": "2020-07-21T08:53:10Z",
"deletions": 44,
"url": "https://github.com/mui-org/material-ui/pull/21867"
},
{
"additions": 74,
"body": 216,
"createdAt": "2020-07-21T06:09:30Z",
"deletions": 956,
"url": "https://github.com/A11yance/aria-query/pull/69"
},
{
"additions": 3,
"body": 12,
"createdAt": "2020-07-20T18:14:22Z",
"deletions": 3,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/595"
},
{
"additions": 11,
"body": 489,
"createdAt": "2020-07-20T17:48:53Z",
"deletions": 157,
"url": "https://github.com/mui-org/material-ui/pull/21863"
},
{
"additions": 6,
"body": 0,
"createdAt": "2020-07-20T14:01:09Z",
"deletions": 1,
"url": "https://github.com/eps1lon/actions-label-merge-conflict/pull/19"
},
{
"additions": 15,
"body": 0,
"createdAt": "2020-07-20T13:48:45Z",
"deletions": 0,
"url": "https://github.com/eps1lon/actions-label-merge-conflict/pull/18"
},
{
"additions": 396,
"body": 295,
"createdAt": "2020-07-20T13:41:48Z",
"deletions": 533,
"url": "https://github.com/mui-org/material-ui/pull/21856"
},
{
"additions": 321,
"body": 346,
"createdAt": "2020-07-20T12:17:48Z",
"deletions": 507,
"url": "https://github.com/mui-org/material-ui/pull/21855"
},
{
"additions": 17,
"body": 390,
"createdAt": "2020-07-17T09:48:28Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/21818"
},
{
"additions": 508,
"body": 90,
"createdAt": "2020-07-17T09:34:35Z",
"deletions": 240,
"url": "https://github.com/mui-org/material-ui/pull/21817"
},
{
"additions": 88,
"body": 500,
"createdAt": "2020-07-16T11:58:29Z",
"deletions": 404,
"url": "https://github.com/mui-org/material-ui/pull/21811"
},
{
"additions": 5,
"body": 282,
"createdAt": "2020-07-16T10:20:29Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/21810"
},
{
"additions": 12,
"body": 586,
"createdAt": "2020-07-16T00:12:08Z",
"deletions": 4,
"url": "https://github.com/jsdom/jsdom/pull/3008"
},
{
"additions": 80,
"body": 171,
"createdAt": "2020-07-15T13:03:34Z",
"deletions": 60,
"url": "https://github.com/mui-org/material-ui/pull/21804"
},
{
"additions": 19,
"body": 937,
"createdAt": "2020-07-15T12:08:44Z",
"deletions": 1,
"url": "https://github.com/testing-library/react-testing-library/pull/746"
},
{
"additions": 723,
"body": 528,
"createdAt": "2020-07-15T11:09:47Z",
"deletions": 260,
"url": "https://github.com/mui-org/material-ui/pull/21802"
},
{
"additions": 82,
"body": 116,
"createdAt": "2020-07-15T10:24:57Z",
"deletions": 81,
"url": "https://github.com/oliviertassinari/material-ui/pull/10"
},
{
"additions": 26,
"body": 12,
"createdAt": "2020-07-13T21:35:45Z",
"deletions": 0,
"url": "https://github.com/jsdom/jsdom/pull/3006"
},
{
"additions": 1,
"body": 913,
"createdAt": "2020-07-13T21:33:50Z",
"deletions": 1,
"url": "https://github.com/testing-library/dom-testing-library/pull/695"
},
{
"additions": 4,
"body": 33,
"createdAt": "2020-07-13T20:37:10Z",
"deletions": 1,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/334"
},
{
"additions": 10,
"body": 135,
"createdAt": "2020-07-13T20:31:45Z",
"deletions": 18,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/333"
},
{
"additions": 6,
"body": 56,
"createdAt": "2020-07-13T20:30:48Z",
"deletions": 4,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/332"
},
{
"additions": 38,
"body": 134,
"createdAt": "2020-07-13T14:27:35Z",
"deletions": 18,
"url": "https://github.com/fkling/astexplorer/pull/520"
},
{
"additions": 49,
"body": 107,
"createdAt": "2020-07-13T14:13:27Z",
"deletions": 27,
"url": "https://github.com/oliviertassinari/material-ui/pull/8"
},
{
"additions": 147396,
"body": 741,
"createdAt": "2020-07-12T09:06:17Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/21779"
},
{
"additions": 81,
"body": 423,
"createdAt": "2020-07-11T20:53:27Z",
"deletions": 68,
"url": "https://github.com/mui-org/material-ui/pull/21760"
},
{
"additions": 1,
"body": 349,
"createdAt": "2020-07-11T14:14:10Z",
"deletions": 1,
"url": "https://github.com/facebook/react/pull/19321"
},
{
"additions": 70,
"body": 59,
"createdAt": "2020-07-10T21:50:27Z",
"deletions": 11,
"url": "https://github.com/mui-org/material-ui/pull/21747"
},
{
"additions": 24,
"body": 275,
"createdAt": "2020-07-10T20:24:22Z",
"deletions": 0,
"url": "https://github.com/jsdom/jsdom/pull/3005"
},
{
"additions": 44,
"body": 845,
"createdAt": "2020-07-10T19:23:16Z",
"deletions": 41,
"url": "https://github.com/mui-org/material-ui/pull/21746"
},
{
"additions": 27161,
"body": 0,
"createdAt": "2020-07-09T15:28:54Z",
"deletions": 192874,
"url": "https://github.com/yarnplugins/yarn-plugin-deduplicate/pull/6"
},
{
"additions": 68,
"body": 377,
"createdAt": "2020-07-09T14:08:09Z",
"deletions": 32,
"url": "https://github.com/mui-org/material-ui/pull/21731"
},
{
"additions": 1,
"body": 166,
"createdAt": "2020-07-09T13:47:29Z",
"deletions": 13,
"url": "https://github.com/mui-org/material-ui/pull/21730"
},
{
"additions": 34,
"body": 582,
"createdAt": "2020-07-09T10:59:50Z",
"deletions": 39,
"url": "https://github.com/mui-org/material-ui/pull/21726"
},
{
"additions": 47,
"body": 286,
"createdAt": "2020-07-08T21:04:39Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/21720"
},
{
"additions": 3,
"body": 194,
"createdAt": "2020-07-08T16:30:15Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/21719"
},
{
"additions": 3,
"body": 195,
"createdAt": "2020-07-08T14:45:17Z",
"deletions": 19,
"url": "https://github.com/mui-org/material-ui/pull/21714"
},
{
"additions": 27,
"body": 913,
"createdAt": "2020-07-08T10:40:04Z",
"deletions": 56,
"url": "https://github.com/mui-org/material-ui/pull/21710"
},
{
"additions": 27,
"body": 253,
"createdAt": "2020-07-07T14:52:09Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/21703"
},
{
"additions": 17,
"body": 359,
"createdAt": "2020-07-07T14:39:08Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/21702"
},
{
"additions": 2,
"body": 302,
"createdAt": "2020-07-06T19:16:49Z",
"deletions": 2,
"url": "https://github.com/A11yance/aria-query/pull/68"
},
{
"additions": 3,
"body": 234,
"createdAt": "2020-07-06T19:04:10Z",
"deletions": 2,
"url": "https://github.com/A11yance/aria-query/pull/67"
},
{
"additions": 55,
"body": 211,
"createdAt": "2020-07-06T11:16:23Z",
"deletions": 11,
"url": "https://github.com/mui-org/material-ui/pull/21692"
},
{
"additions": 27,
"body": 117,
"createdAt": "2020-07-06T11:07:08Z",
"deletions": 15,
"url": "https://github.com/mui-org/material-ui/pull/21691"
},
{
"additions": 423,
"body": 160,
"createdAt": "2020-07-06T09:17:25Z",
"deletions": 1274,
"url": "https://github.com/mui-org/material-ui/pull/21690"
},
{
"additions": 28,
"body": 473,
"createdAt": "2020-07-06T08:45:58Z",
"deletions": 23,
"url": "https://github.com/mui-org/material-ui/pull/21689"
},
{
"additions": 7,
"body": 367,
"createdAt": "2020-07-06T08:20:51Z",
"deletions": 27,
"url": "https://github.com/mui-org/material-ui/pull/21688"
},
{
"additions": 102,
"body": 222,
"createdAt": "2020-07-06T08:09:41Z",
"deletions": 33,
"url": "https://github.com/mui-org/material-ui/pull/21687"
},
{
"additions": 663,
"body": 60,
"createdAt": "2020-07-05T08:39:02Z",
"deletions": 663,
"url": "https://github.com/mui-org/material-ui/pull/21681"
},
{
"additions": 2,
"body": 748,
"createdAt": "2020-07-04T13:16:35Z",
"deletions": 0,
"url": "https://github.com/w3c/aria/pull/1293"
},
{
"additions": 964,
"body": 508,
"createdAt": "2020-07-04T12:49:29Z",
"deletions": 75,
"url": "https://github.com/A11yance/aria-query/pull/65"
},
{
"additions": 1,
"body": 122,
"createdAt": "2020-07-04T10:25:06Z",
"deletions": 1,
"url": "https://github.com/eps1lon/actions-label-merge-conflict/pull/15"
},
{
"additions": 96,
"body": 91,
"createdAt": "2020-07-04T08:58:54Z",
"deletions": 0,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/497"
},
{
"additions": 10,
"body": 46,
"createdAt": "2020-07-04T08:03:16Z",
"deletions": 13,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/496"
},
{
"additions": 382,
"body": 161,
"createdAt": "2020-07-03T12:30:07Z",
"deletions": 126,
"url": "https://github.com/mui-org/material-ui/pull/21659"
},
{
"additions": 263,
"body": 43,
"createdAt": "2020-07-02T20:11:13Z",
"deletions": 43,
"url": "https://github.com/mui-org/material-ui/pull/21655"
},
{
"additions": 19,
"body": 97,
"createdAt": "2020-07-02T19:33:47Z",
"deletions": 12,
"url": "https://github.com/mui-org/material-ui/pull/21654"
},
{
"additions": 3,
"body": 190,
"createdAt": "2020-07-02T11:20:55Z",
"deletions": 8,
"url": "https://github.com/mnajdova/material-ui/pull/1"
},
{
"additions": 25,
"body": 41,
"createdAt": "2020-07-01T13:46:16Z",
"deletions": 53,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/11"
},
{
"additions": 72,
"body": 0,
"createdAt": "2020-07-01T13:30:14Z",
"deletions": 90,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/10"
},
{
"additions": 3,
"body": 301,
"createdAt": "2020-07-01T13:14:47Z",
"deletions": 2,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/9"
},
{
"additions": 2,
"body": 0,
"createdAt": "2020-07-01T12:45:41Z",
"deletions": 0,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/311"
},
{
"additions": 6,
"body": 89,
"createdAt": "2020-06-27T13:29:30Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/21590"
},
{
"additions": 1319,
"body": 1954,
"createdAt": "2020-06-26T11:43:26Z",
"deletions": 1378,
"url": "https://github.com/mui-org/material-ui/pull/21581"
},
{
"additions": 4,
"body": 111,
"createdAt": "2020-06-25T19:28:22Z",
"deletions": 11,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/454"
},
{
"additions": 23,
"body": 499,
"createdAt": "2020-06-25T09:02:07Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/21568"
},
{
"additions": 30,
"body": 263,
"createdAt": "2020-06-24T12:24:30Z",
"deletions": 21,
"url": "https://github.com/mui-org/material-ui/pull/21558"
},
{
"additions": 164,
"body": 2967,
"createdAt": "2020-06-23T14:21:55Z",
"deletions": 46,
"url": "https://github.com/mui-org/material-ui/pull/21552"
},
{
"additions": 1,
"body": 374,
"createdAt": "2020-06-23T14:17:33Z",
"deletions": 1,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/45663"
},
{
"additions": 9,
"body": 604,
"createdAt": "2020-06-23T11:09:25Z",
"deletions": 9,
"url": "https://github.com/A11yance/aria-query/pull/64"
},
{
"additions": 47,
"body": 1476,
"createdAt": "2020-06-23T09:08:56Z",
"deletions": 15,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/45657"
},
{
"additions": 12,
"body": 274,
"createdAt": "2020-06-23T09:01:16Z",
"deletions": 12,
"url": "https://github.com/microsoft/DefinitelyTyped-tools/pull/63"
},
{
"additions": 0,
"body": 767,
"createdAt": "2020-06-23T08:04:35Z",
"deletions": 4,
"url": "https://github.com/testing-library/dom-testing-library/pull/665"
},
{
"additions": 288,
"body": 203,
"createdAt": "2020-06-22T17:48:15Z",
"deletions": 276,
"url": "https://github.com/mui-org/material-ui/pull/21541"
},
{
"additions": 8,
"body": 269,
"createdAt": "2020-06-22T16:26:54Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/21539"
},
{
"additions": 359,
"body": 140,
"createdAt": "2020-06-19T09:09:49Z",
"deletions": 6,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/8"
},
{
"additions": 10,
"body": 614,
"createdAt": "2020-06-19T07:05:33Z",
"deletions": 139,
"url": "https://github.com/mui-org/material-ui/pull/21504"
},
{
"additions": 2724,
"body": 435,
"createdAt": "2020-06-18T13:46:25Z",
"deletions": 59,
"url": "https://github.com/mui-org/material-ui/pull/21497"
},
{
"additions": 10,
"body": 34,
"createdAt": "2020-06-18T12:03:13Z",
"deletions": 21,
"url": "https://github.com/mui-org/material-ui/pull/21495"
},
{
"additions": 8,
"body": 169,
"createdAt": "2020-06-17T08:02:25Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/21484"
},
{
"additions": 10,
"body": 175,
"createdAt": "2020-06-17T07:29:39Z",
"deletions": 21,
"url": "https://github.com/mui-org/material-ui/pull/21482"
},
{
"additions": 8566,
"body": 399,
"createdAt": "2020-06-17T06:49:03Z",
"deletions": 2541,
"url": "https://github.com/mui-org/material-ui/pull/21481"
},
{
"additions": 247,
"body": 44,
"createdAt": "2020-06-16T10:53:31Z",
"deletions": 5,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/395"
},
{
"additions": 2221,
"body": 974,
"createdAt": "2020-06-16T09:18:53Z",
"deletions": 1443,
"url": "https://github.com/mui-org/material-ui/pull/21463"
},
{
"additions": 19,
"body": 374,
"createdAt": "2020-06-16T08:04:29Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/21462"
},
{
"additions": 8,
"body": 198,
"createdAt": "2020-06-15T21:12:19Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/21459"
},
{
"additions": 8,
"body": 235,
"createdAt": "2020-06-15T15:30:55Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/21452"
},
{
"additions": 3,
"body": 39,
"createdAt": "2020-06-15T14:17:28Z",
"deletions": 1,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/389"
},
{
"additions": 8,
"body": 57,
"createdAt": "2020-06-15T13:49:41Z",
"deletions": 7,
"url": "https://github.com/mui-org/material-ui/pull/21450"
},
{
"additions": 0,
"body": 80,
"createdAt": "2020-06-15T07:55:03Z",
"deletions": 1,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/289"
},
{
"additions": 20,
"body": 36,
"createdAt": "2020-06-15T07:42:59Z",
"deletions": 5,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/288"
},
{
"additions": 2,
"body": 519,
"createdAt": "2020-06-13T09:31:27Z",
"deletions": 13,
"url": "https://github.com/mui-org/material-ui/pull/21414"
},
{
"additions": 1,
"body": 245,
"createdAt": "2020-06-12T10:00:24Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/21403"
},
{
"additions": 0,
"body": 120,
"createdAt": "2020-06-12T09:22:48Z",
"deletions": 18,
"url": "https://github.com/A11yance/aria-query/pull/53"
},
{
"additions": 15,
"body": 264,
"createdAt": "2020-06-12T09:20:13Z",
"deletions": 0,
"url": "https://github.com/A11yance/aria-query/pull/52"
},
{
"additions": 1,
"body": 477,
"createdAt": "2020-06-11T13:30:46Z",
"deletions": 1,
"url": "https://github.com/typescript-cheatsheets/react/pull/241"
},
{
"additions": 368,
"body": 85,
"createdAt": "2020-06-11T09:49:06Z",
"deletions": 60,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/372"
},
{
"additions": 250510,
"body": 0,
"createdAt": "2020-06-11T09:32:24Z",
"deletions": 126,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/371"
},
{
"additions": 117,
"body": 52,
"createdAt": "2020-06-11T08:22:52Z",
"deletions": 66,
"url": "https://github.com/mui-org/material-ui/pull/21391"
},
{
"additions": 2,
"body": 100,
"createdAt": "2020-06-10T11:04:19Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/21386"
},
{
"additions": 189,
"body": 888,
"createdAt": "2020-06-10T08:39:27Z",
"deletions": 19,
"url": "https://github.com/merceyz/typescript-to-proptypes/pull/25"
},
{
"additions": 271,
"body": 524,
"createdAt": "2020-06-10T08:00:19Z",
"deletions": 81,
"url": "https://github.com/mui-org/material-ui/pull/21383"
},
{
"additions": 206,
"body": 183,
"createdAt": "2020-06-09T08:36:19Z",
"deletions": 36,
"url": "https://github.com/mui-org/material-ui/pull/21375"
},
{
"additions": 5,
"body": 720,
"createdAt": "2020-06-09T08:01:02Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/21374"
},
{
"additions": 1516,
"body": 35,
"createdAt": "2020-06-08T18:58:29Z",
"deletions": 3456,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/361"
},
{
"additions": 45,
"body": 682,
"createdAt": "2020-06-08T18:22:27Z",
"deletions": 45,
"url": "https://github.com/mui-org/material-ui/pull/21369"
},
{
"additions": 160,
"body": 33,
"createdAt": "2020-06-08T18:03:17Z",
"deletions": 26,
"url": "https://github.com/mui-org/material-ui/pull/21368"
},
{
"additions": 612,
"body": 170,
"createdAt": "2020-06-08T08:00:14Z",
"deletions": 584,
"url": "https://github.com/mui-org/material-ui/pull/21365"
},
{
"additions": 1,
"body": 759,
"createdAt": "2020-06-05T15:45:56Z",
"deletions": 1,
"url": "https://github.com/testing-library/dom-testing-library/pull/606"
},
{
"additions": 17,
"body": 0,
"createdAt": "2020-06-05T15:32:10Z",
"deletions": 252,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/275"
},
{
"additions": 39,
"body": 71,
"createdAt": "2020-06-05T14:24:31Z",
"deletions": 14,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/273"
},
{
"additions": 132,
"body": 766,
"createdAt": "2020-06-04T09:58:21Z",
"deletions": 100,
"url": "https://github.com/mui-org/material-ui/pull/21309"
},
{
"additions": 19,
"body": 17,
"createdAt": "2020-06-04T09:12:55Z",
"deletions": 109,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/343"
},
{
"additions": 175,
"body": 14,
"createdAt": "2020-06-04T08:46:25Z",
"deletions": 163,
"url": "https://github.com/mui-org/material-ui/pull/21308"
},
{
"additions": 462,
"body": 135,
"createdAt": "2020-06-04T08:01:53Z",
"deletions": 2278,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/340"
},
{
"additions": 13886,
"body": 53,
"createdAt": "2020-06-03T20:25:23Z",
"deletions": 15487,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/338"
},
{
"additions": 100,
"body": 177,
"createdAt": "2020-06-03T19:31:04Z",
"deletions": 20,
"url": "https://github.com/mui-org/material-ui/pull/21300"
},
{
"additions": 11,
"body": 125,
"createdAt": "2020-06-03T18:02:49Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/21298"
},
{
"additions": 34950,
"body": 126,
"createdAt": "2020-06-03T08:15:00Z",
"deletions": 10247,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/331"
},
{
"additions": 2,
"body": 1826,
"createdAt": "2020-06-02T12:14:56Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/21285"
},
{
"additions": 95,
"body": 77,
"createdAt": "2020-06-02T06:55:15Z",
"deletions": 4,
"url": "https://github.com/merceyz/typescript-to-proptypes/pull/23"
},
{
"additions": 3,
"body": 83,
"createdAt": "2020-06-02T06:02:17Z",
"deletions": 3,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/321"
},
{
"additions": 6875,
"body": 48,
"createdAt": "2020-06-02T05:58:36Z",
"deletions": 9420,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/320"
},
{
"additions": 5,
"body": 160,
"createdAt": "2020-05-29T09:35:47Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/21240"
},
{
"additions": 22,
"body": 1874,
"createdAt": "2020-05-27T16:01:06Z",
"deletions": 2,
"url": "https://github.com/testing-library/dom-testing-library/pull/590"
},
{
"additions": 640,
"body": 4208,
"createdAt": "2020-05-26T16:15:24Z",
"deletions": 55,
"url": "https://github.com/mui-org/material-ui/pull/21214"
},
{
"additions": 47,
"body": 329,
"createdAt": "2020-05-26T10:08:49Z",
"deletions": 12,
"url": "https://github.com/mui-org/material-ui/pull/21209"
},
{
"additions": 101,
"body": 406,
"createdAt": "2020-05-25T06:37:15Z",
"deletions": 77,
"url": "https://github.com/mui-org/material-ui/pull/21195"
},
{
"additions": 6,
"body": 84,
"createdAt": "2020-05-20T19:30:40Z",
"deletions": 9,
"url": "https://github.com/mui-org/material-ui/pull/21131"
},
{
"additions": 3,
"body": 781,
"createdAt": "2020-05-20T07:52:44Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/21122"
},
{
"additions": 26,
"body": 168,
"createdAt": "2020-05-20T07:07:01Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/21121"
},
{
"additions": 5,
"body": 312,
"createdAt": "2020-05-20T05:55:47Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/21120"
},
{
"additions": 12,
"body": 200,
"createdAt": "2020-05-19T21:15:51Z",
"deletions": 15,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/44898"
},
{
"additions": 12,
"body": 1126,
"createdAt": "2020-05-19T20:24:18Z",
"deletions": 8,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/44896"
},
{
"additions": 15,
"body": 32,
"createdAt": "2020-05-19T09:04:51Z",
"deletions": 15,
"url": "https://github.com/mui-org/material-ui/pull/21109"
},
{
"additions": 1,
"body": 1141,
"createdAt": "2020-05-18T09:51:33Z",
"deletions": 1,
"url": "https://github.com/testing-library/dom-testing-library/pull/580"
},
{
"additions": 65,
"body": 88,
"createdAt": "2020-05-18T08:55:12Z",
"deletions": 3,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/248"
},
{
"additions": 1,
"body": 163,
"createdAt": "2020-05-16T20:45:10Z",
"deletions": 0,
"url": "https://github.com/sw-yx/swyxdotio/pull/34"
},
{
"additions": 4,
"body": 122,
"createdAt": "2020-05-16T19:20:31Z",
"deletions": 1,
"url": "https://github.com/eps1lon/solverfox.dev/pull/9"
},
{
"additions": 266,
"body": 82,
"createdAt": "2020-05-16T17:28:10Z",
"deletions": 52,
"url": "https://github.com/eps1lon/solverfox.dev/pull/8"
},
{
"additions": 220,
"body": 0,
"createdAt": "2020-05-16T16:36:27Z",
"deletions": 12,
"url": "https://github.com/eps1lon/solverfox.dev/pull/7"
},
{
"additions": 62,
"body": 169,
"createdAt": "2020-05-16T13:13:20Z",
"deletions": 10,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/240"
},
{
"additions": 3,
"body": 59,
"createdAt": "2020-05-16T12:29:39Z",
"deletions": 0,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/239"
},
{
"additions": 131,
"body": 169,
"createdAt": "2020-05-16T11:54:51Z",
"deletions": 85,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/238"
},
{
"additions": 11,
"body": 62,
"createdAt": "2020-05-16T11:11:16Z",
"deletions": 29,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/237"
},
{
"additions": 6,
"body": 216,
"createdAt": "2020-05-16T10:29:37Z",
"deletions": 10,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/236"
},
{
"additions": 57,
"body": 80,
"createdAt": "2020-05-16T10:07:44Z",
"deletions": 2,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/235"
},
{
"additions": 3,
"body": 13,
"createdAt": "2020-05-15T15:00:08Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/21047"
},
{
"additions": 61,
"body": 60,
"createdAt": "2020-05-15T10:24:09Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/21043"
},
{
"additions": 39,
"body": 519,
"createdAt": "2020-05-14T18:32:13Z",
"deletions": 0,
"url": "https://github.com/facebook/react/pull/18925"
},
{
"additions": 39,
"body": 128,
"createdAt": "2020-05-14T17:44:34Z",
"deletions": 71,
"url": "https://github.com/mui-org/material-ui/pull/21035"
},
{
"additions": 611,
"body": 519,
"createdAt": "2020-05-14T17:14:54Z",
"deletions": 1065,
"url": "https://github.com/mui-org/material-ui/pull/21034"
},
{
"additions": 311,
"body": 618,
"createdAt": "2020-05-14T13:00:45Z",
"deletions": 367,
"url": "https://github.com/mui-org/material-ui/pull/21032"
},
{
"additions": 12,
"body": 14,
"createdAt": "2020-05-13T14:21:15Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/21017"
},
{
"additions": 65,
"body": 136,
"createdAt": "2020-05-13T11:06:22Z",
"deletions": 17,
"url": "https://github.com/mui-org/material-ui/pull/21014"
},
{
"additions": 36,
"body": 1321,
"createdAt": "2020-05-12T22:05:49Z",
"deletions": 1,
"url": "https://github.com/testing-library/dom-testing-library/pull/568"
},
{
"additions": 1,
"body": 80,
"createdAt": "2020-05-12T16:51:04Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/21007"
},
{
"additions": 67,
"body": 183,
"createdAt": "2020-05-12T12:31:24Z",
"deletions": 3,
"url": "https://github.com/merceyz/typescript-to-proptypes/pull/21"
},
{
"additions": 470,
"body": 501,
"createdAt": "2020-05-12T11:49:16Z",
"deletions": 110,
"url": "https://github.com/mui-org/material-ui/pull/21002"
},
{
"additions": 169,
"body": 357,
"createdAt": "2020-05-12T11:48:04Z",
"deletions": 20,
"url": "https://github.com/merceyz/typescript-to-proptypes/pull/20"
},
{
"additions": 32,
"body": 151,
"createdAt": "2020-05-11T11:06:49Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/20986"
},
{
"additions": 2,
"body": 210,
"createdAt": "2020-05-09T21:55:32Z",
"deletions": 2,
"url": "https://github.com/vercel/next.js/pull/12669"
},
{
"additions": 109,
"body": 0,
"createdAt": "2020-05-09T21:17:22Z",
"deletions": 94,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/5"
},
{
"additions": 121,
"body": 712,
"createdAt": "2020-05-09T20:56:43Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/20966"
},
{
"additions": 228,
"body": 136,
"createdAt": "2020-05-09T20:01:06Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/20965"
},
{
"additions": 21,
"body": 1785,
"createdAt": "2020-05-09T19:31:31Z",
"deletions": 13,
"url": "https://github.com/mui-org/material-ui/pull/20964"
},
{
"additions": 57,
"body": 852,
"createdAt": "2020-05-09T12:50:46Z",
"deletions": 7,
"url": "https://github.com/mui-org/material-ui/pull/20961"
},
{
"additions": 1,
"body": 243,
"createdAt": "2020-05-09T11:45:10Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/20958"
},
{
"additions": 561,
"body": 412,
"createdAt": "2020-05-08T13:17:51Z",
"deletions": 247,
"url": "https://github.com/mui-org/material-ui/pull/20952"
},
{
"additions": 794,
"body": 380,
"createdAt": "2020-05-07T23:08:37Z",
"deletions": 391,
"url": "https://github.com/mui-org/material-ui/pull/20945"
},
{
"additions": 28,
"body": 1056,
"createdAt": "2020-05-06T20:28:50Z",
"deletions": 3,
"url": "https://github.com/testing-library/dom-testing-library/pull/550"
},
{
"additions": 22,
"body": 72,
"createdAt": "2020-05-06T19:58:58Z",
"deletions": 1,
"url": "https://github.com/testing-library/testing-library-docs/pull/458"
},
{
"additions": 217,
"body": 360,
"createdAt": "2020-05-06T19:29:07Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/20936"
},
{
"additions": 4717,
"body": 1724,
"createdAt": "2020-05-04T22:53:49Z",
"deletions": 3036,
"url": "https://github.com/A11yance/aria-query/pull/46"
},
{
"additions": 31,
"body": 144,
"createdAt": "2020-05-04T16:39:57Z",
"deletions": 17,
"url": "https://github.com/mui-org/material-ui/pull/20903"
},
{
"additions": 129,
"body": 329,
"createdAt": "2020-05-03T16:26:11Z",
"deletions": 138,
"url": "https://github.com/mui-org/material-ui/pull/20894"
},
{
"additions": 124,
"body": 1886,
"createdAt": "2020-05-03T15:51:56Z",
"deletions": 0,
"url": "https://github.com/testing-library/dom-testing-library/pull/540"
},
{
"additions": 2,
"body": 13,
"createdAt": "2020-05-01T10:00:07Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/20866"
},
{
"additions": 14,
"body": 377,
"createdAt": "2020-04-29T22:51:25Z",
"deletions": 8,
"url": "https://github.com/mui-org/material-ui/pull/20848"
},
{
"additions": 10,
"body": 217,
"createdAt": "2020-04-29T19:16:42Z",
"deletions": 10,
"url": "https://github.com/mui-org/material-ui/pull/20843"
},
{
"additions": 57,
"body": 552,
"createdAt": "2020-04-29T17:36:04Z",
"deletions": 5,
"url": "https://github.com/mui-org/material-ui/pull/20841"
},
{
"additions": 1,
"body": 0,
"createdAt": "2020-04-29T14:37:17Z",
"deletions": 1,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/270"
},
{
"additions": 13,
"body": 46,
"createdAt": "2020-04-29T14:29:04Z",
"deletions": 2,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/269"
},
{
"additions": 775,
"body": 1471,
"createdAt": "2020-04-28T00:05:57Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/20806"
},
{
"additions": 569,
"body": 1143,
"createdAt": "2020-04-27T15:57:45Z",
"deletions": 387,
"url": "https://github.com/mui-org/material-ui/pull/20798"
},
{
"additions": 800,
"body": 75,
"createdAt": "2020-04-26T21:18:31Z",
"deletions": 611,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/210"
},
{
"additions": 1,
"body": 651,
"createdAt": "2020-04-26T20:37:33Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/20784"
},
{
"additions": 240,
"body": 777,
"createdAt": "2020-04-26T19:11:15Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/20781"
},
{
"additions": 15,
"body": 531,
"createdAt": "2020-04-26T12:44:40Z",
"deletions": 12,
"url": "https://github.com/mui-org/material-ui/pull/20777"
},
{
"additions": 1,
"body": 73,
"createdAt": "2020-04-26T08:36:29Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/20771"
},
{
"additions": 31,
"body": 186,
"createdAt": "2020-04-26T08:24:19Z",
"deletions": 18,
"url": "https://github.com/mui-org/material-ui/pull/20770"
},
{
"additions": 2,
"body": 302,
"createdAt": "2020-04-24T16:29:21Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/20743"
},
{
"additions": 37,
"body": 489,
"createdAt": "2020-04-23T21:27:16Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/20724"
},
{
"additions": 1,
"body": 178,
"createdAt": "2020-04-23T12:57:34Z",
"deletions": 1,
"url": "https://github.com/joehillen/ev-fish/pull/7"
},
{
"additions": 18,
"body": 89,
"createdAt": "2020-04-23T11:38:04Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/20715"
},
{
"additions": 13,
"body": 97,
"createdAt": "2020-04-22T20:17:40Z",
"deletions": 13,
"url": "https://github.com/mui-org/material-ui/pull/20702"
},
{
"additions": 7,
"body": 34,
"createdAt": "2020-04-22T16:38:08Z",
"deletions": 8,
"url": "https://github.com/mui-org/material-ui/pull/20699"
},
{
"additions": 377,
"body": 796,
"createdAt": "2020-04-22T13:55:16Z",
"deletions": 326,
"url": "https://github.com/mui-org/material-ui/pull/20694"
},
{
"additions": 16,
"body": 205,
"createdAt": "2020-04-22T13:20:13Z",
"deletions": 6,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/209"
},
{
"additions": 15,
"body": 100,
"createdAt": "2020-04-22T12:58:54Z",
"deletions": 4,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/208"
},
{
"additions": 18,
"body": 309,
"createdAt": "2020-04-22T00:17:48Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/20686"
},
{
"additions": 94,
"body": 1302,
"createdAt": "2020-04-21T22:39:32Z",
"deletions": 74,
"url": "https://github.com/mui-org/material-ui/pull/20685"
},
{
"additions": 25,
"body": 38,
"createdAt": "2020-04-21T21:55:26Z",
"deletions": 25,
"url": "https://github.com/mui-org/material-ui/pull/20684"
},
{
"additions": 41,
"body": 624,
"createdAt": "2020-04-21T16:18:08Z",
"deletions": 29,
"url": "https://github.com/mui-org/material-ui/pull/20677"
},
{
"additions": 43,
"body": 820,
"createdAt": "2020-04-20T23:24:33Z",
"deletions": 52,
"url": "https://github.com/mui-org/material-ui/pull/20664"
},
{
"additions": 1,
"body": 372,
"createdAt": "2020-04-20T17:23:18Z",
"deletions": 1,
"url": "https://github.com/facebook/react/pull/18679"
},
{
"additions": 58,
"body": 600,
"createdAt": "2020-04-20T10:53:02Z",
"deletions": 6,
"url": "https://github.com/facebook/react/pull/18676"
},
{
"additions": 11175,
"body": 16,
"createdAt": "2020-04-19T19:05:43Z",
"deletions": 120,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/221"
},
{
"additions": 10,
"body": 44,
"createdAt": "2020-04-18T17:33:55Z",
"deletions": 7,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/215"
},
{
"additions": 195,
"body": 126,
"createdAt": "2020-04-17T11:58:50Z",
"deletions": 234,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/202"
},
{
"additions": 15,
"body": 103,
"createdAt": "2020-04-17T11:22:37Z",
"deletions": 11,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/200"
},
{
"additions": 147,
"body": 135,
"createdAt": "2020-04-17T11:15:51Z",
"deletions": 438,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/199"
},
{
"additions": 1020,
"body": 79,
"createdAt": "2020-04-16T23:33:02Z",
"deletions": 471,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/193"
},
{
"additions": 3821,
"body": 2468,
"createdAt": "2020-04-16T21:27:53Z",
"deletions": 1675,
"url": "https://github.com/mui-org/material-ui/pull/20601"
},
{
"additions": 20,
"body": 346,
"createdAt": "2020-04-16T13:55:07Z",
"deletions": 61,
"url": "https://github.com/mui-org/material-ui/pull/20587"
},
{
"additions": 31,
"body": 988,
"createdAt": "2020-04-16T12:30:53Z",
"deletions": 0,
"url": "https://github.com/facebook/react/pull/18634"
},
{
"additions": 1,
"body": 316,
"createdAt": "2020-04-16T10:16:25Z",
"deletions": 7,
"url": "https://github.com/microsoft/TypeScript-DOM-lib-generator/pull/853"
},
{
"additions": 47,
"body": 521,
"createdAt": "2020-04-16T09:28:36Z",
"deletions": 0,
"url": "https://github.com/mdn/browser-compat-data/pull/5990"
},
{
"additions": 56,
"body": 237,
"createdAt": "2020-04-15T21:51:00Z",
"deletions": 1,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/201"
},
{
"additions": 6,
"body": 171,
"createdAt": "2020-04-15T21:21:15Z",
"deletions": 0,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/200"
},
{
"additions": 39,
"body": 25,
"createdAt": "2020-04-15T20:18:28Z",
"deletions": 99,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/199"
},
{
"additions": 5,
"body": 39,
"createdAt": "2020-04-15T20:15:16Z",
"deletions": 28,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/198"
},
{
"additions": 4,
"body": 74,
"createdAt": "2020-04-15T19:35:59Z",
"deletions": 1,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/195"
},
{
"additions": 541747,
"body": 0,
"createdAt": "2020-04-15T19:28:06Z",
"deletions": 725141,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/194"
},
{
"additions": 38,
"body": 131,
"createdAt": "2020-04-15T08:41:37Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/20571"
},
{
"additions": 59,
"body": 0,
"createdAt": "2020-04-15T00:15:34Z",
"deletions": 32,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/4"
},
{
"additions": 3,
"body": 312,
"createdAt": "2020-04-14T23:09:15Z",
"deletions": 25,
"url": "https://github.com/mui-org/material-ui/pull/20563"
},
{
"additions": 4,
"body": 117,
"createdAt": "2020-04-14T17:49:03Z",
"deletions": 2,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/3"
},
{
"additions": 59,
"body": 0,
"createdAt": "2020-04-14T17:44:02Z",
"deletions": 3,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/2"
},
{
"additions": 113,
"body": 69,
"createdAt": "2020-04-14T16:52:16Z",
"deletions": 2,
"url": "https://github.com/eps1lon/mui-contributor-dashboard/pull/1"
},
{
"additions": 145,
"body": 194,
"createdAt": "2020-04-14T13:33:20Z",
"deletions": 142,
"url": "https://github.com/mui-org/material-ui/pull/20549"
},
{
"additions": 43,
"body": 218,
"createdAt": "2020-04-14T12:35:49Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/20547"
},
{
"additions": 312,
"body": 892,
"createdAt": "2020-04-14T10:30:39Z",
"deletions": 303,
"url": "https://github.com/mui-org/material-ui/pull/20545"
},
{
"additions": 234,
"body": 1160,
"createdAt": "2020-04-12T16:16:41Z",
"deletions": 25,
"url": "https://github.com/mui-org/material-ui/pull/20523"
},
{
"additions": 13,
"body": 192,
"createdAt": "2020-04-12T15:46:59Z",
"deletions": 17,
"url": "https://github.com/mui-org/material-ui/pull/20522"
},
{
"additions": 73,
"body": 368,
"createdAt": "2020-04-08T21:01:57Z",
"deletions": 37,
"url": "https://github.com/mui-org/material-ui/pull/20472"
},
{
"additions": 3,
"body": 37,
"createdAt": "2020-04-08T09:10:28Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/20465"
},
{
"additions": 11,
"body": 270,
"createdAt": "2020-04-08T08:03:14Z",
"deletions": 12,
"url": "https://github.com/mui-org/material-ui/pull/20464"
},
{
"additions": 56,
"body": 75,
"createdAt": "2020-04-07T14:58:33Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/20454"
},
{
"additions": 137,
"body": 1482,
"createdAt": "2020-04-07T08:17:42Z",
"deletions": 93,
"url": "https://github.com/mui-org/material-ui/pull/20451"
},
{
"additions": 33,
"body": 0,
"createdAt": "2020-04-02T16:34:17Z",
"deletions": 15,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/128"
},
{
"additions": 38,
"body": 813,
"createdAt": "2020-04-02T15:42:04Z",
"deletions": 46,
"url": "https://github.com/mui-org/material-ui/pull/20389"
},
{
"additions": 87,
"body": 278,
"createdAt": "2020-04-02T07:33:29Z",
"deletions": 23,
"url": "https://github.com/merceyz/typescript-to-proptypes/pull/15"
},
{
"additions": 3,
"body": 367,
"createdAt": "2020-04-01T06:34:19Z",
"deletions": 3,
"url": "https://github.com/less/less.js/pull/3490"
},
{
"additions": 4,
"body": 0,
"createdAt": "2020-03-30T20:12:22Z",
"deletions": 4,
"url": "https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/pull/676"
},
{
"additions": 1,
"body": 892,
"createdAt": "2020-03-30T15:17:51Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/20344"
},
{
"additions": 1406,
"body": 1301,
"createdAt": "2020-03-30T14:37:36Z",
"deletions": 424,
"url": "https://github.com/mui-org/material-ui/pull/20342"
},
{
"additions": 4,
"body": 534,
"createdAt": "2020-03-30T13:10:57Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/20341"
},
{
"additions": 76,
"body": 235,
"createdAt": "2020-03-29T15:57:26Z",
"deletions": 73,
"url": "https://github.com/facebook/react/pull/18430"
},
{
"additions": 1,
"body": 109,
"createdAt": "2020-03-28T09:31:13Z",
"deletions": 1,
"url": "https://github.com/tannerlinsley/react-query/pull/295"
},
{
"additions": 31,
"body": 524,
"createdAt": "2020-03-27T22:12:09Z",
"deletions": 11,
"url": "https://github.com/mui-org/material-ui/pull/20306"
},
{
"additions": 436,
"body": 252,
"createdAt": "2020-03-27T13:23:58Z",
"deletions": 114,
"url": "https://github.com/mui-org/material-ui/pull/20298"
},
{
"additions": 154,
"body": 349,
"createdAt": "2020-03-27T12:07:19Z",
"deletions": 8,
"url": "https://github.com/merceyz/typescript-to-proptypes/pull/10"
},
{
"additions": 2680,
"body": 113,
"createdAt": "2020-03-27T09:20:27Z",
"deletions": 12,
"url": "https://github.com/merceyz/typescript-to-proptypes/pull/9"
},
{
"additions": 8,
"body": 861,
"createdAt": "2020-03-26T20:11:59Z",
"deletions": 13,
"url": "https://github.com/mui-org/material-ui/pull/20293"
},
{
"additions": 100,
"body": 1057,
"createdAt": "2020-03-26T12:32:43Z",
"deletions": 3,
"url": "https://github.com/merceyz/typescript-to-proptypes/pull/8"
},
{
"additions": 41,
"body": 227,
"createdAt": "2020-03-26T10:13:58Z",
"deletions": 1,
"url": "https://github.com/merceyz/typescript-to-proptypes/pull/7"
},
{
"additions": 21,
"body": 190,
"createdAt": "2020-03-25T23:12:19Z",
"deletions": 0,
"url": "https://github.com/typescript-cheatsheets/react/pull/209"
},
{
"additions": 69,
"body": 199,
"createdAt": "2020-03-25T23:04:31Z",
"deletions": 68,
"url": "https://github.com/typescript-cheatsheets/react/pull/208"
},
{
"additions": 2,
"body": 0,
"createdAt": "2020-03-25T12:58:59Z",
"deletions": 2,
"url": "https://github.com/eps1lon/actions-label-merge-conflict/pull/9"
},
{
"additions": 2,
"body": 221,
"createdAt": "2020-03-25T12:35:59Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/20269"
},
{
"additions": 54,
"body": 202,
"createdAt": "2020-03-25T10:43:10Z",
"deletions": 14,
"url": "https://github.com/eps1lon/actions-label-merge-conflict/pull/8"
},
{
"additions": 7,
"body": 896,
"createdAt": "2020-03-25T09:02:21Z",
"deletions": 6,
"url": "https://github.com/facebook/react/pull/18386"
},
{
"additions": 759,
"body": 515,
"createdAt": "2020-03-24T21:13:33Z",
"deletions": 169,
"url": "https://github.com/mui-org/material-ui/pull/20264"
},
{
"additions": 245,
"body": 13,
"createdAt": "2020-03-24T09:48:56Z",
"deletions": 19,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/168"
},
{
"additions": 34,
"body": 247,
"createdAt": "2020-03-23T16:44:14Z",
"deletions": 3,
"url": "https://github.com/merceyz/typescript-to-proptypes/pull/5"
},
{
"additions": 23,
"body": 94,
"createdAt": "2020-03-23T16:04:58Z",
"deletions": 0,
"url": "https://github.com/merceyz/typescript-to-proptypes/pull/4"
},
{
"additions": 1,
"body": 891,
"createdAt": "2020-03-23T14:26:04Z",
"deletions": 1,
"url": "https://github.com/testing-library/dom-testing-library/pull/495"
},
{
"additions": 16,
"body": 55,
"createdAt": "2020-03-23T10:25:33Z",
"deletions": 18,
"url": "https://github.com/eps1lon/dependabot-clickable-commands/pull/11"
},
{
"additions": 53,
"body": 73,
"createdAt": "2020-03-22T12:58:12Z",
"deletions": 40,
"url": "https://github.com/mui-org/material-ui/pull/20233"
},
{
"additions": 4,
"body": 69,
"createdAt": "2020-03-22T00:11:52Z",
"deletions": 5,
"url": "https://github.com/eps1lon/actions-label-merge-conflict/pull/7"
},
{
"additions": 12,
"body": 251,
"createdAt": "2020-03-21T23:21:17Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/20212"
},
{
"additions": 2367,
"body": 190,
"createdAt": "2020-03-21T22:47:52Z",
"deletions": 2540,
"url": "https://github.com/mui-org/material-ui/pull/20211"
},
{
"additions": 7,
"body": 0,
"createdAt": "2020-03-21T20:22:20Z",
"deletions": 1,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/157"
},
{
"additions": 114,
"body": 156,
"createdAt": "2020-03-21T18:03:56Z",
"deletions": 8,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/155"
},
{
"additions": 271,
"body": 230,
"createdAt": "2020-03-20T22:16:12Z",
"deletions": 208,
"url": "https://github.com/mui-org/material-ui/pull/20200"
},
{
"additions": 37,
"body": 103,
"createdAt": "2020-03-20T20:56:37Z",
"deletions": 7,
"url": "https://github.com/mui-org/material-ui/pull/20199"
},
{
"additions": 66,
"body": 368,
"createdAt": "2020-03-20T15:49:34Z",
"deletions": 56,
"url": "https://github.com/typescript-cheatsheets/react/pull/201"
},
{
"additions": 1,
"body": 0,
"createdAt": "2020-03-20T15:19:49Z",
"deletions": 1,
"url": "https://github.com/eps1lon/actions-label-merge-conflict/pull/6"
},
{
"additions": 26,
"body": 162,
"createdAt": "2020-03-20T15:16:47Z",
"deletions": 5,
"url": "https://github.com/eps1lon/actions-label-merge-conflict/pull/5"
},
{
"additions": 3,
"body": 155,
"createdAt": "2020-03-20T14:37:02Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/20195"
},
{
"additions": 81,
"body": 463,
"createdAt": "2020-03-20T10:48:42Z",
"deletions": 41,
"url": "https://github.com/mui-org/material-ui/pull/20194"
},
{
"additions": 342,
"body": 305,
"createdAt": "2020-03-19T15:11:56Z",
"deletions": 357,
"url": "https://github.com/mui-org/material-ui/pull/20187"
},
{
"additions": 37,
"body": 329,
"createdAt": "2020-03-19T11:01:49Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/20177"
},
{
"additions": 5,
"body": 778,
"createdAt": "2020-03-18T21:08:37Z",
"deletions": 1,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/43215"
},
{
"additions": 35,
"body": 27,
"createdAt": "2020-03-18T19:57:05Z",
"deletions": 10,
"url": "https://github.com/mui-org/material-ui/pull/20171"
},
{
"additions": 18,
"body": 358,
"createdAt": "2020-03-18T13:52:20Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/20169"
},
{
"additions": 12,
"body": 0,
"createdAt": "2020-03-18T13:12:13Z",
"deletions": 0,
"url": "https://github.com/eps1lon/actions-label-merge-conflict/pull/3"
},
{
"additions": 48,
"body": 125,
"createdAt": "2020-03-18T12:13:03Z",
"deletions": 7,
"url": "https://github.com/eps1lon/actions-label-merge-conflict/pull/1"
},
{
"additions": 1,
"body": 734,
"createdAt": "2020-03-18T09:42:02Z",
"deletions": 1,
"url": "https://github.com/testing-library/react-testing-library/pull/617"
},
{
"additions": 1,
"body": 22,
"createdAt": "2020-03-17T22:47:35Z",
"deletions": 1,
"url": "https://github.com/eps1lon/mui-workflow-maintenance/pull/6"
},
{
"additions": 333,
"body": 718,
"createdAt": "2020-03-17T17:29:56Z",
"deletions": 308,
"url": "https://github.com/mui-org/material-ui/pull/20158"
},
{
"additions": 312,
"body": 60,
"createdAt": "2020-03-17T16:55:54Z",
"deletions": 337,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/82"
},
{
"additions": 10,
"body": 55,
"createdAt": "2020-03-17T16:41:34Z",
"deletions": 12,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/81"
},
{
"additions": 29,
"body": 137,
"createdAt": "2020-03-17T16:36:54Z",
"deletions": 27,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/79"
},
{
"additions": 15,
"body": 328,
"createdAt": "2020-03-17T14:12:17Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/20155"
},
{
"additions": 8,
"body": 58,
"createdAt": "2020-03-15T15:37:34Z",
"deletions": 6,
"url": "https://github.com/testing-library/dom-testing-library/pull/487"
},
{
"additions": 5,
"body": 36,
"createdAt": "2020-03-15T15:24:20Z",
"deletions": 0,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/149"
},
{
"additions": 7,
"body": 0,
"createdAt": "2020-03-15T15:17:44Z",
"deletions": 6,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/148"
},
{
"additions": 6,
"body": 0,
"createdAt": "2020-03-15T15:15:17Z",
"deletions": 0,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/147"
},
{
"additions": 53,
"body": 0,
"createdAt": "2020-03-15T14:59:07Z",
"deletions": 12,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/146"
},
{
"additions": 8,
"body": 214,
"createdAt": "2020-03-15T14:46:20Z",
"deletions": 2,
"url": "https://github.com/atlassian/changesets/pull/298"
},
{
"additions": 10,
"body": 110,
"createdAt": "2020-03-15T14:17:51Z",
"deletions": 12,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/145"
},
{
"additions": 6,
"body": 137,
"createdAt": "2020-03-15T13:51:20Z",
"deletions": 0,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/144"
},
{
"additions": 21,
"body": 65,
"createdAt": "2020-03-15T13:45:22Z",
"deletions": 2,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/143"
},
{
"additions": 6,
"body": 90,
"createdAt": "2020-03-15T11:23:10Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/20127"
},
{
"additions": 1,
"body": 157,
"createdAt": "2020-03-13T15:01:35Z",
"deletions": 0,
"url": "https://github.com/mjackson/unpkg/pull/249"
},
{
"additions": 292,
"body": 183,
"createdAt": "2020-03-13T11:30:14Z",
"deletions": 23,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/141"
},
{
"additions": 1145,
"body": 167,
"createdAt": "2020-03-13T09:16:27Z",
"deletions": 805,
"url": "https://github.com/Uclusion/uclusion_web_ui/pull/37"
},
{
"additions": 2134,
"body": 233,
"createdAt": "2020-03-11T21:38:21Z",
"deletions": 82,
"url": "https://github.com/mui-org/material-ui/pull/20079"
},
{
"additions": 1903,
"body": 234,
"createdAt": "2020-03-11T19:37:21Z",
"deletions": 30,
"url": "https://github.com/mui-org/material-ui/pull/20078"
},
{
"additions": 31,
"body": 13,
"createdAt": "2020-03-10T00:36:22Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/20051"
},
{
"additions": 148,
"body": 442,
"createdAt": "2020-03-09T12:45:59Z",
"deletions": 95,
"url": "https://github.com/mui-org/material-ui/pull/20046"
},
{
"additions": 1,
"body": 255,
"createdAt": "2020-03-07T23:34:29Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/20021"
},
{
"additions": 3,
"body": 10,
"createdAt": "2020-03-07T21:42:56Z",
"deletions": 1,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/46"
},
{
"additions": 344,
"body": 21,
"createdAt": "2020-03-07T21:41:29Z",
"deletions": 895,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/45"
},
{
"additions": 23,
"body": 5934,
"createdAt": "2020-03-07T20:15:33Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/20019"
},
{
"additions": 37,
"body": 0,
"createdAt": "2020-03-07T16:58:33Z",
"deletions": 19,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/43"
},
{
"additions": 229,
"body": 0,
"createdAt": "2020-03-07T15:11:30Z",
"deletions": 11,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/38"
},
{
"additions": 4241,
"body": 52,
"createdAt": "2020-03-07T14:17:48Z",
"deletions": 28,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/37"
},
{
"additions": 1,
"body": 121,
"createdAt": "2020-03-07T13:29:53Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/20017"
},
{
"additions": 14,
"body": 1372,
"createdAt": "2020-03-06T16:53:18Z",
"deletions": 1,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/42892"
},
{
"additions": 11,
"body": 27,
"createdAt": "2020-03-06T11:42:25Z",
"deletions": 0,
"url": "https://github.com/Uclusion/uclusion_web_ui/pull/36"
},
{
"additions": 12,
"body": 148,
"createdAt": "2020-03-06T11:23:34Z",
"deletions": 7,
"url": "https://github.com/Uclusion/uclusion_web_ui/pull/35"
},
{
"additions": 9,
"body": 386,
"createdAt": "2020-03-06T01:05:08Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/20007"
},
{
"additions": 12,
"body": 392,
"createdAt": "2020-03-05T23:09:28Z",
"deletions": 17,
"url": "https://github.com/mui-org/material-ui/pull/20005"
},
{
"additions": 63,
"body": 504,
"createdAt": "2020-03-05T16:59:40Z",
"deletions": 2,
"url": "https://github.com/facebook/react/pull/18224"
},
{
"additions": 542,
"body": 180,
"createdAt": "2020-03-05T00:04:53Z",
"deletions": 201,
"url": "https://github.com/mui-org/material-ui/pull/19995"
},
{
"additions": 4,
"body": 855,
"createdAt": "2020-03-04T22:10:37Z",
"deletions": 2,
"url": "https://github.com/testing-library/dom-testing-library/pull/464"
},
{
"additions": 8,
"body": 954,
"createdAt": "2020-03-04T21:56:32Z",
"deletions": 6,
"url": "https://github.com/testing-library/dom-testing-library/pull/463"
},
{
"additions": 181,
"body": 162,
"createdAt": "2020-03-04T10:37:09Z",
"deletions": 80,
"url": "https://github.com/mui-org/material-ui/pull/19978"
},
{
"additions": 51,
"body": 948,
"createdAt": "2020-03-03T17:37:34Z",
"deletions": 17,
"url": "https://github.com/mui-org/material-ui/pull/19966"
},
{
"additions": 38,
"body": 277,
"createdAt": "2020-03-03T16:32:40Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/19964"
},
{
"additions": 7,
"body": 279,
"createdAt": "2020-03-03T14:47:41Z",
"deletions": 7,
"url": "https://github.com/mui-org/material-ui/pull/19962"
},
{
"additions": 52,
"body": 121,
"createdAt": "2020-03-03T01:35:10Z",
"deletions": 25,
"url": "https://github.com/mui-org/material-ui/pull/19951"
},
{
"additions": 42,
"body": 1089,
"createdAt": "2020-03-03T00:43:45Z",
"deletions": 38,
"url": "https://github.com/mui-org/material-ui/pull/19950"
},
{
"additions": 101,
"body": 0,
"createdAt": "2020-03-01T18:26:06Z",
"deletions": 46,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/126"
},
{
"additions": 661,
"body": 263,
"createdAt": "2020-03-01T11:08:34Z",
"deletions": 589,
"url": "https://github.com/mui-org/material-ui/pull/19921"
},
{
"additions": 92,
"body": 1275,
"createdAt": "2020-02-27T13:29:48Z",
"deletions": 8,
"url": "https://github.com/facebook/react/pull/18149"
},
{
"additions": 853,
"body": 129,
"createdAt": "2020-02-26T15:02:45Z",
"deletions": 578,
"url": "https://github.com/Uclusion/uclusion_web_ui/pull/34"
},
{
"additions": 1,
"body": 19,
"createdAt": "2020-02-26T09:37:14Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/19858"
},
{
"additions": 82,
"body": 301,
"createdAt": "2020-02-26T09:29:52Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/19857"
},
{
"additions": 1,
"body": 253,
"createdAt": "2020-02-25T10:15:00Z",
"deletions": 1,
"url": "https://github.com/testing-library/jest-dom/pull/212"
},
{
"additions": 32,
"body": 12,
"createdAt": "2020-02-24T08:45:38Z",
"deletions": 0,
"url": "https://github.com/jsdom/jsdom/pull/2866"
},
{
"additions": 8,
"body": 79,
"createdAt": "2020-02-23T15:45:10Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/19825"
},
{
"additions": 1,
"body": 58,
"createdAt": "2020-02-23T13:02:17Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/19823"
},
{
"additions": 83,
"body": 49,
"createdAt": "2020-02-20T15:31:52Z",
"deletions": 75,
"url": "https://github.com/Uclusion/uclusion_web_ui/pull/33"
},
{
"additions": 84,
"body": 352,
"createdAt": "2020-02-18T21:42:24Z",
"deletions": 1,
"url": "https://github.com/facebook/react/pull/18070"
},
{
"additions": 30,
"body": 1591,
"createdAt": "2020-02-16T10:16:49Z",
"deletions": 5,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/42398"
},
{
"additions": 4,
"body": 269,
"createdAt": "2020-02-16T09:47:27Z",
"deletions": 4,
"url": "https://github.com/microsoft/TypeScript-Handbook/pull/1294"
},
{
"additions": 214,
"body": 48,
"createdAt": "2020-02-14T11:12:06Z",
"deletions": 52,
"url": "https://github.com/Uclusion/uclusion_web_ui/pull/31"
},
{
"additions": 38,
"body": 444,
"createdAt": "2020-02-13T18:16:01Z",
"deletions": 2,
"url": "https://github.com/facebook/react/pull/18035"
},
{
"additions": 18,
"body": 0,
"createdAt": "2020-02-13T15:02:17Z",
"deletions": 0,
"url": "https://github.com/eps1lon/mui-types-perf/pull/5"
},
{
"additions": 38,
"body": 182,
"createdAt": "2020-02-10T11:45:52Z",
"deletions": 67,
"url": "https://github.com/mui-org/material-ui/pull/19644"
},
{
"additions": 10,
"body": 481,
"createdAt": "2020-02-10T11:40:33Z",
"deletions": 5,
"url": "https://github.com/oliviertassinari/react-swipeable-views/pull/587"
},
{
"additions": 25,
"body": 126,
"createdAt": "2020-02-10T09:48:46Z",
"deletions": 15,
"url": "https://github.com/mui-org/material-ui/pull/19643"
},
{
"additions": 6,
"body": 142,
"createdAt": "2020-02-09T08:48:34Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/19633"
},
{
"additions": 131,
"body": 1143,
"createdAt": "2020-02-07T13:12:41Z",
"deletions": 114,
"url": "https://github.com/Uclusion/uclusion_web_ui/pull/29"
},
{
"additions": 13,
"body": 41,
"createdAt": "2020-02-07T11:21:14Z",
"deletions": 5,
"url": "https://github.com/Uclusion/uclusion_web_ui/pull/28"
},
{
"additions": 127,
"body": 0,
"createdAt": "2020-02-07T10:20:16Z",
"deletions": 57,
"url": "https://github.com/Uclusion/uclusion_web_ui/pull/27"
},
{
"additions": 20,
"body": 202,
"createdAt": "2020-02-04T22:23:35Z",
"deletions": 0,
"url": "https://github.com/A11yance/aria-query/pull/42"
},
{
"additions": 23,
"body": 117,
"createdAt": "2020-02-04T22:17:57Z",
"deletions": 0,
"url": "https://github.com/eps1lon/aria-query/pull/2"
},
{
"additions": 95,
"body": 1024,
"createdAt": "2020-02-04T22:02:14Z",
"deletions": 51,
"url": "https://github.com/testing-library/dom-testing-library/pull/447"
},
{
"additions": 55,
"body": 1231,
"createdAt": "2020-02-04T21:56:34Z",
"deletions": 33,
"url": "https://github.com/testing-library/dom-testing-library/pull/446"
},
{
"additions": 52,
"body": 365,
"createdAt": "2020-02-01T23:44:01Z",
"deletions": 5,
"url": "https://github.com/mui-org/material-ui/pull/19515"
},
{
"additions": 13,
"body": 1108,
"createdAt": "2020-02-01T21:31:24Z",
"deletions": 1,
"url": "https://github.com/testing-library/dom-testing-library/pull/445"
},
{
"additions": 6,
"body": 0,
"createdAt": "2020-02-01T20:33:26Z",
"deletions": 2,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/102"
},
{
"additions": 14,
"body": 79,
"createdAt": "2020-02-01T10:19:52Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/19504"
},
{
"additions": 5,
"body": 481,
"createdAt": "2020-01-31T18:15:10Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/19501"
},
{
"additions": 7,
"body": 453,
"createdAt": "2020-01-30T20:57:00Z",
"deletions": 53,
"url": "https://github.com/Uclusion/uclusion_web_ui/pull/26"
},
{
"additions": 31,
"body": 1328,
"createdAt": "2020-01-29T15:39:28Z",
"deletions": 5,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/41951"
},
{
"additions": 596,
"body": 578,
"createdAt": "2020-01-29T14:49:08Z",
"deletions": 313,
"url": "https://github.com/Uclusion/uclusion_web_ui/pull/25"
},
{
"additions": 25,
"body": 96,
"createdAt": "2020-01-29T09:04:51Z",
"deletions": 2,
"url": "https://github.com/Uclusion/uclusion_web_ui/pull/24"
},
{
"additions": 12,
"body": 0,
"createdAt": "2020-01-27T16:15:23Z",
"deletions": 1,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/98"
},
{
"additions": 7,
"body": 86,
"createdAt": "2020-01-27T16:04:14Z",
"deletions": 26,
"url": "https://github.com/mui-org/material-ui/pull/19425"
},
{
"additions": 5,
"body": 451,
"createdAt": "2020-01-27T15:30:49Z",
"deletions": 1,
"url": "https://github.com/microsoft/TypeScript-DOM-lib-generator/pull/820"
},
{
"additions": 66,
"body": 236,
"createdAt": "2020-01-27T14:58:01Z",
"deletions": 0,
"url": "https://github.com/microsoft/TypeScript-DOM-lib-generator/pull/819"
},
{
"additions": 206,
"body": 0,
"createdAt": "2020-01-26T22:40:23Z",
"deletions": 184,
"url": "https://github.com/eps1lon/material-ui-playroom/pull/172"
},
{
"additions": 4,
"body": 171,
"createdAt": "2020-01-26T22:09:29Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/19417"
},
{
"additions": 6,
"body": 194,
"createdAt": "2020-01-26T17:12:53Z",
"deletions": 7,
"url": "https://github.com/mui-org/material-ui/pull/19412"
},
{
"additions": 1,
"body": 206,
"createdAt": "2020-01-26T16:30:47Z",
"deletions": 1,
"url": "https://github.com/yarnpkg/berry/pull/780"
},
{
"additions": 32,
"body": 1258,
"createdAt": "2020-01-25T17:37:03Z",
"deletions": 6,
"url": "https://github.com/testing-library/testing-library-docs/pull/368"
},
{
"additions": 334,
"body": 384,
"createdAt": "2020-01-24T21:23:39Z",
"deletions": 330,
"url": "https://github.com/mui-org/material-ui-pickers/pull/1469"
},
{
"additions": 1,
"body": 373,
"createdAt": "2020-01-24T20:04:53Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/19380"
},
{
"additions": 57,
"body": 509,
"createdAt": "2020-01-24T11:54:22Z",
"deletions": 56,
"url": "https://github.com/mui-org/material-ui/pull/19377"
},
{
"additions": 9,
"body": 265,
"createdAt": "2020-01-24T10:11:43Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/19375"
},
{
"additions": 68,
"body": 717,
"createdAt": "2020-01-23T22:03:34Z",
"deletions": 119,
"url": "https://github.com/SimenB/react/pull/837"
},
{
"additions": 34,
"body": 334,
"createdAt": "2020-01-23T14:50:39Z",
"deletions": 0,
"url": "https://github.com/jsdom/cssstyle/pull/111"
},
{
"additions": 64,
"body": 409,
"createdAt": "2020-01-21T19:52:58Z",
"deletions": 105,
"url": "https://github.com/eps1lon/mui-types-perf/pull/3"
},
{
"additions": 33,
"body": 304,
"createdAt": "2020-01-21T14:56:54Z",
"deletions": 12,
"url": "https://github.com/mui-org/material-ui/pull/19333"
},
{
"additions": 202,
"body": 580,
"createdAt": "2020-01-21T11:46:15Z",
"deletions": 137,
"url": "https://github.com/mui-org/material-ui/pull/19332"
},
{
"additions": 70,
"body": 1471,
"createdAt": "2020-01-20T17:56:23Z",
"deletions": 164,
"url": "https://github.com/mui-org/material-ui/pull/19320"
},
{
"additions": 9,
"body": 261,
"createdAt": "2020-01-19T09:53:53Z",
"deletions": 4,
"url": "https://github.com/oliviertassinari/react-swipeable-views/pull/570"
},
{
"additions": 8,
"body": 577,
"createdAt": "2020-01-19T08:42:56Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/19301"
},
{
"additions": 91,
"body": 142,
"createdAt": "2020-01-17T10:51:21Z",
"deletions": 26,
"url": "https://github.com/mui-org/material-ui/pull/19269"
},
{
"additions": 30,
"body": 610,
"createdAt": "2020-01-16T09:12:54Z",
"deletions": 20,
"url": "https://github.com/mui-org/material-ui/pull/19263"
},
{
"additions": 26,
"body": 118,
"createdAt": "2020-01-15T19:55:20Z",
"deletions": 36,
"url": "https://github.com/eps1lon/mui-types-perf/pull/2"
},
{
"additions": 4,
"body": 401,
"createdAt": "2020-01-15T19:14:57Z",
"deletions": 14,
"url": "https://github.com/mui-org/material-ui/pull/19259"
},
{
"additions": 12,
"body": 111,
"createdAt": "2020-01-15T10:37:26Z",
"deletions": 12,
"url": "https://github.com/mui-org/material-ui/pull/19243"
},
{
"additions": 22,
"body": 796,
"createdAt": "2020-01-15T10:26:20Z",
"deletions": 31,
"url": "https://github.com/mui-org/material-ui/pull/19242"
},
{
"additions": 23,
"body": 31,
"createdAt": "2019-12-27T14:18:58Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/18998"
},
{
"additions": 74,
"body": 276,
"createdAt": "2019-12-09T11:49:45Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/18754"
},
{
"additions": 10,
"body": 67,
"createdAt": "2019-12-09T09:38:00Z",
"deletions": 102,
"url": "https://github.com/mui-org/material-ui/pull/18753"
},
{
"additions": 4,
"body": 13,
"createdAt": "2019-12-01T08:25:32Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/18639"
},
{
"additions": 1,
"body": 229,
"createdAt": "2019-12-01T07:55:53Z",
"deletions": 1,
"url": "https://github.com/babel-utils/babel-plugin-tester/pull/56"
},
{
"additions": 208,
"body": 2150,
"createdAt": "2019-11-29T12:19:21Z",
"deletions": 5,
"url": "https://github.com/testing-library/dom-testing-library/pull/408"
},
{
"additions": 120,
"body": 944,
"createdAt": "2019-11-28T10:54:49Z",
"deletions": 22,
"url": "https://github.com/mui-org/material-ui/pull/18609"
},
{
"additions": 17,
"body": 0,
"createdAt": "2019-11-28T09:39:02Z",
"deletions": 18,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/42"
},
{
"additions": 95,
"body": 747,
"createdAt": "2019-11-28T09:23:15Z",
"deletions": 11,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/41"
},
{
"additions": 463,
"body": 141,
"createdAt": "2019-11-27T14:53:18Z",
"deletions": 66,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/23"
},
{
"additions": 8,
"body": 55,
"createdAt": "2019-11-27T07:55:51Z",
"deletions": 18,
"url": "https://github.com/eps1lon/poe-recraft/pull/56"
},
{
"additions": 11,
"body": 0,
"createdAt": "2019-11-26T19:53:16Z",
"deletions": 14,
"url": "https://github.com/eps1lon/poe-recraft/pull/38"
},
{
"additions": 226,
"body": 77,
"createdAt": "2019-11-26T16:38:51Z",
"deletions": 167,
"url": "https://github.com/eps1lon/poe-recraft/pull/13"
},
{
"additions": 256,
"body": 184,
"createdAt": "2019-11-26T15:54:53Z",
"deletions": 12353,
"url": "https://github.com/eps1lon/poe-recraft/pull/12"
},
{
"additions": 1847,
"body": 30,
"createdAt": "2019-11-26T14:46:25Z",
"deletions": 3185,
"url": "https://github.com/eps1lon/poe-recraft/pull/11"
},
{
"additions": 144,
"body": 43,
"createdAt": "2019-11-26T09:06:44Z",
"deletions": 1128,
"url": "https://github.com/eps1lon/poe-recraft/pull/10"
},
{
"additions": 234,
"body": 14,
"createdAt": "2019-11-26T08:59:29Z",
"deletions": 296,
"url": "https://github.com/eps1lon/poe-recraft/pull/9"
},
{
"additions": 1,
"body": 351,
"createdAt": "2019-11-25T13:51:00Z",
"deletions": 0,
"url": "https://github.com/vercel/next.js/pull/9511"
},
{
"additions": 55,
"body": 261,
"createdAt": "2019-11-25T13:40:32Z",
"deletions": 3,
"url": "https://github.com/babel/website/pull/2134"
},
{
"additions": 1,
"body": 88,
"createdAt": "2019-11-25T10:55:39Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/18553"
},
{
"additions": 566,
"body": 110,
"createdAt": "2019-11-25T10:44:59Z",
"deletions": 550,
"url": "https://github.com/mui-org/material-ui/pull/18552"
},
{
"additions": 1,
"body": 0,
"createdAt": "2019-11-25T08:36:58Z",
"deletions": 1,
"url": "https://github.com/atlassian/changesets/pull/228"
},
{
"additions": 5879,
"body": 77,
"createdAt": "2019-11-24T12:39:02Z",
"deletions": 2308,
"url": "https://github.com/eps1lon/poe-recraft/pull/8"
},
{
"additions": 15,
"body": 407,
"createdAt": "2019-11-23T10:53:01Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/18512"
},
{
"additions": 1,
"body": 74,
"createdAt": "2019-11-22T14:22:38Z",
"deletions": 0,
"url": "https://github.com/microsoft/types-publisher/pull/712"
},
{
"additions": 73,
"body": 1746,
"createdAt": "2019-11-22T14:20:00Z",
"deletions": 0,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/40588"
},
{
"additions": 134,
"body": 16,
"createdAt": "2019-11-22T13:53:07Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/18503"
},
{
"additions": 39,
"body": 201,
"createdAt": "2019-11-22T12:57:29Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/18501"
},
{
"additions": 87,
"body": 1685,
"createdAt": "2019-11-22T12:53:52Z",
"deletions": 0,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/40586"
},
{
"additions": 41,
"body": 214,
"createdAt": "2019-11-22T12:24:22Z",
"deletions": 38,
"url": "https://github.com/mui-org/material-ui/pull/18500"
},
{
"additions": 52,
"body": 391,
"createdAt": "2019-11-20T17:34:03Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/18468"
},
{
"additions": 995,
"body": 945,
"createdAt": "2019-11-18T19:49:08Z",
"deletions": 817,
"url": "https://github.com/mui-org/material-ui/pull/18441"
},
{
"additions": 37,
"body": 189,
"createdAt": "2019-11-18T15:40:19Z",
"deletions": 16,
"url": "https://github.com/mui-org/material-ui/pull/18433"
},
{
"additions": 41,
"body": 681,
"createdAt": "2019-11-18T09:57:38Z",
"deletions": 34,
"url": "https://github.com/mui-org/material-ui/pull/18428"
},
{
"additions": 10,
"body": 200,
"createdAt": "2019-11-15T14:44:58Z",
"deletions": 0,
"url": "https://github.com/babel/website/pull/2128"
},
{
"additions": 168,
"body": 131,
"createdAt": "2019-11-15T13:55:48Z",
"deletions": 25,
"url": "https://github.com/mui-org/material-ui/pull/18385"
},
{
"additions": 30,
"body": 521,
"createdAt": "2019-11-15T13:21:35Z",
"deletions": 7,
"url": "https://github.com/mui-org/material-ui/pull/18384"
},
{
"additions": 38,
"body": 426,
"createdAt": "2019-11-15T11:44:16Z",
"deletions": 10,
"url": "https://github.com/mui-org/material-ui/pull/18383"
},
{
"additions": 60,
"body": 344,
"createdAt": "2019-11-15T10:51:33Z",
"deletions": 24,
"url": "https://github.com/mui-org/material-ui/pull/18382"
},
{
"additions": 4,
"body": 317,
"createdAt": "2019-11-15T08:48:36Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/18379"
},
{
"additions": 2,
"body": 290,
"createdAt": "2019-11-11T19:26:06Z",
"deletions": 1,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/22"
},
{
"additions": 44,
"body": 0,
"createdAt": "2019-11-11T15:17:15Z",
"deletions": 38,
"url": "https://github.com/mui-org/material-ui/pull/18319"
},
{
"additions": 54,
"body": 555,
"createdAt": "2019-11-11T14:54:50Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/18318"
},
{
"additions": 34,
"body": 459,
"createdAt": "2019-11-11T12:36:42Z",
"deletions": 44,
"url": "https://github.com/mui-org/material-ui/pull/18316"
},
{
"additions": 324,
"body": 514,
"createdAt": "2019-11-08T10:19:12Z",
"deletions": 418,
"url": "https://github.com/mui-org/material-ui/pull/18271"
},
{
"additions": 137,
"body": 45,
"createdAt": "2019-11-07T17:43:16Z",
"deletions": 138,
"url": "https://github.com/mui-org/material-ui/pull/18261"
},
{
"additions": 20,
"body": 48,
"createdAt": "2019-11-07T14:39:54Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/18257"
},
{
"additions": 12,
"body": 368,
"createdAt": "2019-11-07T11:49:10Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/18250"
},
{
"additions": 1,
"body": 114,
"createdAt": "2019-11-05T21:01:41Z",
"deletions": 1,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/21"
},
{
"additions": 2,
"body": 92,
"createdAt": "2019-11-05T20:54:50Z",
"deletions": 5,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/20"
},
{
"additions": 98,
"body": 57,
"createdAt": "2019-11-05T20:50:02Z",
"deletions": 2,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/19"
},
{
"additions": 16,
"body": 419,
"createdAt": "2019-11-05T16:04:12Z",
"deletions": 1,
"url": "https://github.com/fb55/css-what/pull/89"
},
{
"additions": 9,
"body": 564,
"createdAt": "2019-11-05T14:05:35Z",
"deletions": 1,
"url": "https://github.com/fb55/css-select/pull/154"
},
{
"additions": 1,
"body": 393,
"createdAt": "2019-11-05T10:45:17Z",
"deletions": 18,
"url": "https://github.com/jsdom/jsdom/pull/2706"
},
{
"additions": 6,
"body": 87,
"createdAt": "2019-11-04T15:14:35Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/18192"
},
{
"additions": 7,
"body": 1299,
"createdAt": "2019-11-04T14:13:12Z",
"deletions": 5,
"url": "https://github.com/testing-library/react-testing-library/pull/522"
},
{
"additions": 16,
"body": 313,
"createdAt": "2019-11-03T16:20:11Z",
"deletions": 5,
"url": "https://github.com/mui-org/material-ui/pull/18163"
},
{
"additions": 143,
"body": 189,
"createdAt": "2019-11-03T15:57:03Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/18162"
},
{
"additions": 28,
"body": 325,
"createdAt": "2019-11-01T18:55:25Z",
"deletions": 22,
"url": "https://github.com/mui-org/material-ui/pull/18146"
},
{
"additions": 427,
"body": 314,
"createdAt": "2019-11-01T16:20:56Z",
"deletions": 17,
"url": "https://github.com/mui-org/material-ui/pull/18142"
},
{
"additions": 29,
"body": 13,
"createdAt": "2019-11-01T16:07:26Z",
"deletions": 12,
"url": "https://github.com/mui-org/material-ui/pull/18141"
},
{
"additions": 8,
"body": 778,
"createdAt": "2019-11-01T11:50:20Z",
"deletions": 8,
"url": "https://github.com/testing-library/react-testing-library/pull/519"
},
{
"additions": 44,
"body": 205,
"createdAt": "2019-11-01T10:02:28Z",
"deletions": 0,
"url": "https://github.com/jsdom/jsdom/pull/2700"
},
{
"additions": 29,
"body": 822,
"createdAt": "2019-11-01T07:54:28Z",
"deletions": 16,
"url": "https://github.com/A11yance/aria-query/pull/27"
},
{
"additions": 10,
"body": 139,
"createdAt": "2019-10-30T09:39:59Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/18100"
},
{
"additions": 17,
"body": 595,
"createdAt": "2019-10-30T09:04:28Z",
"deletions": 4,
"url": "https://github.com/yannickcr/eslint-plugin-react/pull/2478"
},
{
"additions": 2,
"body": 1452,
"createdAt": "2019-10-30T08:15:46Z",
"deletions": 1,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/39993"
},
{
"additions": 3,
"body": 564,
"createdAt": "2019-10-30T08:08:44Z",
"deletions": 0,
"url": "https://github.com/testing-library/react-testing-library/pull/513"
},
{
"additions": 52,
"body": 197,
"createdAt": "2019-10-29T13:26:12Z",
"deletions": 40,
"url": "https://github.com/mui-org/material-ui/pull/18085"
},
{
"additions": 6,
"body": 528,
"createdAt": "2019-10-29T12:26:32Z",
"deletions": 6,
"url": "https://github.com/reactjs/reactjs.org/pull/2515"
},
{
"additions": 40,
"body": 911,
"createdAt": "2019-10-29T11:47:41Z",
"deletions": 3,
"url": "https://github.com/testing-library/dom-testing-library/pull/398"
},
{
"additions": 137,
"body": 673,
"createdAt": "2019-10-28T20:35:37Z",
"deletions": 69,
"url": "https://github.com/mui-org/material-ui/pull/18076"
},
{
"additions": 9,
"body": 559,
"createdAt": "2019-10-28T12:01:03Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/18074"
},
{
"additions": 0,
"body": 50,
"createdAt": "2019-10-28T11:10:10Z",
"deletions": 8,
"url": "https://github.com/mui-org/material-ui/pull/18073"
},
{
"additions": 502,
"body": 0,
"createdAt": "2019-10-27T16:58:34Z",
"deletions": 34,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/17"
},
{
"additions": 53,
"body": 0,
"createdAt": "2019-10-27T16:09:46Z",
"deletions": 34,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/16"
},
{
"additions": 50,
"body": 93,
"createdAt": "2019-10-27T14:32:38Z",
"deletions": 0,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/15"
},
{
"additions": 6,
"body": 266,
"createdAt": "2019-10-27T14:10:30Z",
"deletions": 4,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/14"
},
{
"additions": 113,
"body": 70,
"createdAt": "2019-10-27T13:51:36Z",
"deletions": 11,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/13"
},
{
"additions": 20,
"body": 78,
"createdAt": "2019-10-27T13:15:59Z",
"deletions": 3,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/12"
},
{
"additions": 1553,
"body": 127,
"createdAt": "2019-10-27T10:10:10Z",
"deletions": 420,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/11"
},
{
"additions": 29,
"body": 169,
"createdAt": "2019-10-27T09:19:31Z",
"deletions": 17,
"url": "https://github.com/SarthakC/material-ui/pull/1"
},
{
"additions": 87,
"body": 106,
"createdAt": "2019-10-25T16:33:37Z",
"deletions": 59,
"url": "https://github.com/mui-org/material-ui/pull/18037"
},
{
"additions": 77,
"body": 235,
"createdAt": "2019-10-25T11:09:48Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/18033"
},
{
"additions": 72,
"body": 228,
"createdAt": "2019-10-25T09:03:56Z",
"deletions": 14,
"url": "https://github.com/mui-org/material-ui/pull/18032"
},
{
"additions": 61,
"body": 2039,
"createdAt": "2019-10-24T16:03:11Z",
"deletions": 37,
"url": "https://github.com/testing-library/dom-testing-library/pull/395"
},
{
"additions": 2,
"body": 134,
"createdAt": "2019-10-24T14:13:24Z",
"deletions": 0,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/39389"
},
{
"additions": 251,
"body": 148,
"createdAt": "2019-10-24T06:23:47Z",
"deletions": 195,
"url": "https://github.com/mui-org/material-ui/pull/18015"
},
{
"additions": 8,
"body": 335,
"createdAt": "2019-10-24T05:23:01Z",
"deletions": 3,
"url": "https://github.com/testing-library/testing-library-docs/pull/306"
},
{
"additions": 88,
"body": 856,
"createdAt": "2019-10-23T19:46:27Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/18008"
},
{
"additions": 969,
"body": 2576,
"createdAt": "2019-10-23T08:05:32Z",
"deletions": 375,
"url": "https://github.com/TheBrainFamily/wait-for-expect/pull/25"
},
{
"additions": 1,
"body": 114,
"createdAt": "2019-10-23T07:22:08Z",
"deletions": 4,
"url": "https://github.com/A11yance/aria-query/pull/25"
},
{
"additions": 9,
"body": 468,
"createdAt": "2019-10-22T16:16:14Z",
"deletions": 4,
"url": "https://github.com/facebook/jest/pull/9075"
},
{
"additions": 21,
"body": 65,
"createdAt": "2019-10-22T09:11:05Z",
"deletions": 0,
"url": "https://github.com/hoop71/material-ui/pull/1"
},
{
"additions": 6,
"body": 0,
"createdAt": "2019-10-21T20:00:56Z",
"deletions": 5,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/9"
},
{
"additions": 45,
"body": 0,
"createdAt": "2019-10-21T19:39:37Z",
"deletions": 3,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/8"
},
{
"additions": 316,
"body": 143,
"createdAt": "2019-10-21T19:07:49Z",
"deletions": 37,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/7"
},
{
"additions": 1,
"body": 169,
"createdAt": "2019-10-21T16:37:23Z",
"deletions": 1,
"url": "https://github.com/web-platform-tests/wpt/pull/19807"
},
{
"additions": 40,
"body": 262,
"createdAt": "2019-10-21T16:15:46Z",
"deletions": 31,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/5"
},
{
"additions": 31,
"body": 39,
"createdAt": "2019-10-21T14:15:56Z",
"deletions": 8,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/3"
},
{
"additions": 3,
"body": 120,
"createdAt": "2019-10-21T13:40:21Z",
"deletions": 9,
"url": "https://github.com/mui-org/material-ui/pull/17976"
},
{
"additions": 12,
"body": 0,
"createdAt": "2019-10-20T17:55:29Z",
"deletions": 12,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/2"
},
{
"additions": 60,
"body": 0,
"createdAt": "2019-10-20T14:10:15Z",
"deletions": 3,
"url": "https://github.com/eps1lon/dom-accessibility-api/pull/1"
},
{
"additions": 36,
"body": 726,
"createdAt": "2019-10-20T13:09:31Z",
"deletions": 57,
"url": "https://github.com/testing-library/testing-library-docs/pull/305"
},
{
"additions": 3,
"body": 395,
"createdAt": "2019-10-20T08:55:16Z",
"deletions": 6,
"url": "https://github.com/emilyuhde/material-ui/pull/1"
},
{
"additions": 358,
"body": 895,
"createdAt": "2019-10-15T18:28:29Z",
"deletions": 265,
"url": "https://github.com/mui-org/material-ui/pull/17892"
},
{
"additions": 25,
"body": 372,
"createdAt": "2019-10-14T11:00:53Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/17874"
},
{
"additions": 137,
"body": 240,
"createdAt": "2019-10-14T10:42:07Z",
"deletions": 116,
"url": "https://github.com/mui-org/material-ui/pull/17873"
},
{
"additions": 58,
"body": 838,
"createdAt": "2019-10-14T08:49:06Z",
"deletions": 39,
"url": "https://github.com/mui-org/material-ui/pull/17870"
},
{
"additions": 64,
"body": 89,
"createdAt": "2019-10-13T19:34:27Z",
"deletions": 22,
"url": "https://github.com/eps1lon/solverfox.dev/pull/6"
},
{
"additions": 5,
"body": 39,
"createdAt": "2019-10-13T17:37:41Z",
"deletions": 9,
"url": "https://github.com/eps1lon/solverfox.dev/pull/5"
},
{
"additions": 371,
"body": 0,
"createdAt": "2019-10-13T17:33:58Z",
"deletions": 53,
"url": "https://github.com/eps1lon/solverfox.dev/pull/4"
},
{
"additions": 3,
"body": 418,
"createdAt": "2019-10-13T17:07:29Z",
"deletions": 0,
"url": "https://github.com/testing-library/dom-testing-library/pull/383"
},
{
"additions": 3,
"body": 1048,
"createdAt": "2019-10-13T16:25:59Z",
"deletions": 3,
"url": "https://github.com/testing-library/dom-testing-library/pull/381"
},
{
"additions": 11,
"body": 1481,
"createdAt": "2019-10-12T08:27:02Z",
"deletions": 1,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/39076"
},
{
"additions": 43,
"body": 170,
"createdAt": "2019-10-11T16:13:14Z",
"deletions": 105,
"url": "https://github.com/mui-org/material-ui/pull/17841"
},
{
"additions": 37,
"body": 22,
"createdAt": "2019-10-11T10:28:52Z",
"deletions": 64,
"url": "https://github.com/mui-org/material-ui/pull/17837"
},
{
"additions": 25,
"body": 790,
"createdAt": "2019-10-10T13:18:55Z",
"deletions": 12,
"url": "https://github.com/mui-org/material-ui/pull/17827"
},
{
"additions": 13,
"body": 1145,
"createdAt": "2019-10-10T12:10:01Z",
"deletions": 18,
"url": "https://github.com/mbrookes/material-ui/pull/1"
},
{
"additions": 21,
"body": 1257,
"createdAt": "2019-10-10T09:36:40Z",
"deletions": 0,
"url": "https://github.com/testing-library/dom-testing-library/pull/378"
},
{
"additions": 4,
"body": 148,
"createdAt": "2019-10-09T07:56:22Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/17800"
},
{
"additions": 2,
"body": 133,
"createdAt": "2019-10-09T07:15:31Z",
"deletions": 14,
"url": "https://github.com/mui-org/material-ui/pull/17798"
},
{
"additions": 17,
"body": 691,
"createdAt": "2019-10-07T17:57:50Z",
"deletions": 22,
"url": "https://github.com/mui-org/material-ui/pull/17773"
},
{
"additions": 112,
"body": 121,
"createdAt": "2019-10-07T11:48:39Z",
"deletions": 154,
"url": "https://github.com/mui-org/material-ui/pull/17768"
},
{
"additions": 15,
"body": 81,
"createdAt": "2019-10-07T08:24:49Z",
"deletions": 1,
"url": "https://github.com/testing-library/testing-library-docs/pull/284"
},
{
"additions": 7,
"body": 32,
"createdAt": "2019-10-07T06:22:06Z",
"deletions": 1,
"url": "https://github.com/eps1lon/material-ui-playroom/pull/115"
},
{
"additions": 20,
"body": 96,
"createdAt": "2019-10-07T06:13:30Z",
"deletions": 20,
"url": "https://github.com/eps1lon/material-ui-playroom/pull/114"
},
{
"additions": 91,
"body": 162,
"createdAt": "2019-10-06T19:25:57Z",
"deletions": 147,
"url": "https://github.com/mui-org/material-ui/pull/17763"
},
{
"additions": 5,
"body": 345,
"createdAt": "2019-10-04T19:36:30Z",
"deletions": 5,
"url": "https://github.com/sveltejs/sapper-template/pull/173"
},
{
"additions": 2,
"body": 123,
"createdAt": "2019-10-04T19:05:21Z",
"deletions": 1,
"url": "https://github.com/pngwn/MDsveX/pull/24"
},
{
"additions": 26,
"body": 313,
"createdAt": "2019-10-04T10:41:38Z",
"deletions": 9,
"url": "https://github.com/yarnpkg/berry/pull/508"
},
{
"additions": 28,
"body": 331,
"createdAt": "2019-10-03T14:40:42Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/17684"
},
{
"additions": 104,
"body": 998,
"createdAt": "2019-10-03T10:21:18Z",
"deletions": 55,
"url": "https://github.com/mui-org/material-ui/pull/17680"
},
{
"additions": 215,
"body": 1289,
"createdAt": "2019-10-02T08:07:53Z",
"deletions": 36,
"url": "https://github.com/mui-org/material-ui/pull/17662"
},
{
"additions": 51,
"body": 452,
"createdAt": "2019-10-01T08:15:34Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/17651"
},
{
"additions": 19,
"body": 367,
"createdAt": "2019-10-01T05:51:53Z",
"deletions": 8,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/38748"
},
{
"additions": 5,
"body": 437,
"createdAt": "2019-10-01T05:28:51Z",
"deletions": 12,
"url": "https://github.com/fullstackopen-2019/fullstackopen-2019.github.io/pull/490"
},
{
"additions": 104,
"body": 838,
"createdAt": "2019-09-30T08:31:07Z",
"deletions": 88,
"url": "https://github.com/mui-org/material-ui/pull/17633"
},
{
"additions": 15,
"body": 278,
"createdAt": "2019-09-30T06:35:35Z",
"deletions": 15,
"url": "https://github.com/mui-org/material-ui/pull/17632"
},
{
"additions": 31,
"body": 144,
"createdAt": "2019-09-30T05:13:06Z",
"deletions": 95,
"url": "https://github.com/mui-org/material-ui/pull/17631"
},
{
"additions": 27,
"body": 1407,
"createdAt": "2019-09-28T09:43:10Z",
"deletions": 17,
"url": "https://github.com/testing-library/dom-testing-library/pull/364"
},
{
"additions": 1,
"body": 967,
"createdAt": "2019-09-25T16:58:12Z",
"deletions": 1,
"url": "https://github.com/testing-library/dom-testing-library/pull/363"
},
{
"additions": 28,
"body": 210,
"createdAt": "2019-09-25T15:40:44Z",
"deletions": 34,
"url": "https://github.com/mui-org/material-ui/pull/17573"
},
{
"additions": 218,
"body": 216,
"createdAt": "2019-09-25T14:01:49Z",
"deletions": 139,
"url": "https://github.com/mui-org/material-ui/pull/17571"
},
{
"additions": 86,
"body": 28,
"createdAt": "2019-09-24T17:22:48Z",
"deletions": 97,
"url": "https://github.com/eps1lon/material-ui-playroom/pull/103"
},
{
"additions": 51,
"body": 421,
"createdAt": "2019-09-24T17:05:53Z",
"deletions": 37,
"url": "https://github.com/mui-org/material-ui/pull/17557"
},
{
"additions": 46,
"body": 1521,
"createdAt": "2019-09-24T08:47:00Z",
"deletions": 8,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/38560"
},
{
"additions": 572,
"body": 3721,
"createdAt": "2019-09-23T11:19:15Z",
"deletions": 693,
"url": "https://github.com/mui-org/material-ui/pull/17538"
},
{
"additions": 14,
"body": 301,
"createdAt": "2019-09-23T10:10:38Z",
"deletions": 10,
"url": "https://github.com/mui-org/material-ui/pull/17537"
},
{
"additions": 105,
"body": 79,
"createdAt": "2019-09-23T09:39:19Z",
"deletions": 105,
"url": "https://github.com/mui-org/material-ui/pull/17536"
},
{
"additions": 3,
"body": 53,
"createdAt": "2019-09-23T09:20:43Z",
"deletions": 3,
"url": "https://github.com/eps1lon/material-ui-playroom/pull/98"
},
{
"additions": 100,
"body": 25,
"createdAt": "2019-09-23T08:53:13Z",
"deletions": 95,
"url": "https://github.com/eps1lon/material-ui-playroom/pull/97"
},
{
"additions": 111,
"body": 128,
"createdAt": "2019-09-22T07:42:26Z",
"deletions": 111,
"url": "https://github.com/mui-org/material-ui/pull/17520"
},
{
"additions": 80,
"body": 22,
"createdAt": "2019-09-21T16:18:42Z",
"deletions": 86,
"url": "https://github.com/eps1lon/material-ui-playroom/pull/91"
},
{
"additions": 42,
"body": 22,
"createdAt": "2019-09-21T16:08:33Z",
"deletions": 26,
"url": "https://github.com/eps1lon/material-ui-playroom/pull/90"
},
{
"additions": 22,
"body": 193,
"createdAt": "2019-09-21T15:13:02Z",
"deletions": 0,
"url": "https://github.com/testing-library/testing-library-docs/pull/266"
},
{
"additions": 1,
"body": 119,
"createdAt": "2019-09-21T14:45:27Z",
"deletions": 1,
"url": "https://github.com/testing-library/dom-testing-library/pull/358"
},
{
"additions": 359,
"body": 1810,
"createdAt": "2019-09-21T14:32:48Z",
"deletions": 0,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/38515"
},
{
"additions": 27,
"body": 117,
"createdAt": "2019-09-21T14:17:56Z",
"deletions": 22,
"url": "https://github.com/A11yance/aria-query/pull/23"
},
{
"additions": 175,
"body": 698,
"createdAt": "2019-09-21T10:29:37Z",
"deletions": 133,
"url": "https://github.com/mui-org/material-ui/pull/17506"
},
{
"additions": 532,
"body": 315,
"createdAt": "2019-09-19T14:33:39Z",
"deletions": 478,
"url": "https://github.com/mui-org/material-ui/pull/17490"
},
{
"additions": 270,
"body": 2069,
"createdAt": "2019-09-19T12:42:51Z",
"deletions": 39,
"url": "https://github.com/testing-library/dom-testing-library/pull/352"
},
{
"additions": 203,
"body": 1111,
"createdAt": "2019-09-19T06:30:28Z",
"deletions": 44,
"url": "https://github.com/jsdom/jsdom/pull/2668"
},
{
"additions": 9,
"body": 1340,
"createdAt": "2019-09-18T08:55:28Z",
"deletions": 10,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/38453"
},
{
"additions": 64,
"body": 311,
"createdAt": "2019-09-17T15:14:46Z",
"deletions": 51,
"url": "https://github.com/mui-org/material-ui/pull/17468"
},
{
"additions": 0,
"body": 989,
"createdAt": "2019-09-17T07:21:50Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/17458"
},
{
"additions": 287,
"body": 563,
"createdAt": "2019-09-16T15:31:32Z",
"deletions": 148,
"url": "https://github.com/mui-org/material-ui/pull/17451"
},
{
"additions": 121,
"body": 479,
"createdAt": "2019-09-16T14:22:51Z",
"deletions": 82,
"url": "https://github.com/mui-org/material-ui/pull/17450"
},
{
"additions": 4,
"body": 189,
"createdAt": "2019-09-15T13:08:14Z",
"deletions": 9,
"url": "https://github.com/typescript-cheatsheets/react/pull/144"
},
{
"additions": 23,
"body": 291,
"createdAt": "2019-09-15T13:03:34Z",
"deletions": 0,
"url": "https://github.com/typescript-cheatsheets/react/pull/143"
},
{
"additions": 2,
"body": 789,
"createdAt": "2019-09-13T06:12:34Z",
"deletions": 3,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/38352"
},
{
"additions": 688,
"body": 1374,
"createdAt": "2019-09-12T12:50:29Z",
"deletions": 564,
"url": "https://github.com/mui-org/material-ui/pull/17404"
},
{
"additions": 68,
"body": 1778,
"createdAt": "2019-09-12T08:57:06Z",
"deletions": 0,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/38324"
},
{
"additions": 232,
"body": 429,
"createdAt": "2019-09-11T17:43:24Z",
"deletions": 215,
"url": "https://github.com/mui-org/material-ui/pull/17394"
},
{
"additions": 502,
"body": 3637,
"createdAt": "2019-09-11T09:48:37Z",
"deletions": 305,
"url": "https://github.com/mui-org/material-ui/pull/17390"
},
{
"additions": 49,
"body": 355,
"createdAt": "2019-09-10T07:41:23Z",
"deletions": 9,
"url": "https://github.com/mui-org/material-ui/pull/17378"
},
{
"additions": 1275,
"body": 152,
"createdAt": "2019-09-09T18:10:29Z",
"deletions": 224,
"url": "https://github.com/yarnplugins/yarn-plugin-deduplicate/pull/1"
},
{
"additions": 3,
"body": 687,
"createdAt": "2019-09-08T12:38:07Z",
"deletions": 3,
"url": "https://github.com/yarnpkg/berry/pull/445"
},
{
"additions": 92,
"body": 107,
"createdAt": "2019-09-08T10:34:40Z",
"deletions": 93,
"url": "https://github.com/mui-org/material-ui/pull/17363"
},
{
"additions": 9,
"body": 194,
"createdAt": "2019-09-06T16:16:20Z",
"deletions": 1,
"url": "https://github.com/yarnpkg/berry/pull/443"
},
{
"additions": 36,
"body": 301,
"createdAt": "2019-09-06T16:03:46Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/17345"
},
{
"additions": 12,
"body": 563,
"createdAt": "2019-09-06T09:16:25Z",
"deletions": 0,
"url": "https://github.com/websockets/ws/pull/1626"
},
{
"additions": 38,
"body": 848,
"createdAt": "2019-09-05T08:22:19Z",
"deletions": 3,
"url": "https://github.com/yarnpkg/berry/pull/437"
},
{
"additions": 62,
"body": 1129,
"createdAt": "2019-09-04T21:08:38Z",
"deletions": 41,
"url": "https://github.com/mui-org/material-ui/pull/17317"
},
{
"additions": 5,
"body": 288,
"createdAt": "2019-09-04T15:49:18Z",
"deletions": 5,
"url": "https://github.com/yarnpkg/berry/pull/432"
},
{
"additions": 104,
"body": 538,
"createdAt": "2019-09-03T16:31:00Z",
"deletions": 58,
"url": "https://github.com/mui-org/material-ui/pull/17299"
},
{
"additions": 5,
"body": 80,
"createdAt": "2019-09-03T08:46:22Z",
"deletions": 7,
"url": "https://github.com/mui-org/material-ui/pull/17292"
},
{
"additions": 10,
"body": 293,
"createdAt": "2019-09-02T14:32:16Z",
"deletions": 26,
"url": "https://github.com/mui-org/material-ui/pull/17286"
},
{
"additions": 0,
"body": 436,
"createdAt": "2019-09-02T12:44:57Z",
"deletions": 44,
"url": "https://github.com/mui-org/material-ui/pull/17284"
},
{
"additions": 1,
"body": 271,
"createdAt": "2019-08-29T14:20:59Z",
"deletions": 1,
"url": "https://github.com/facebook/react/pull/16610"
},
{
"additions": 73,
"body": 2108,
"createdAt": "2019-08-29T07:07:26Z",
"deletions": 0,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/38000"
},
{
"additions": 17,
"body": 13,
"createdAt": "2019-08-28T13:49:10Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/17214"
},
{
"additions": 554,
"body": 47,
"createdAt": "2019-08-28T13:03:11Z",
"deletions": 7,
"url": "https://github.com/mui-org/material-ui/pull/17213"
},
{
"additions": 42,
"body": 791,
"createdAt": "2019-08-28T12:05:39Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/17211"
},
{
"additions": 111,
"body": 536,
"createdAt": "2019-08-28T09:13:34Z",
"deletions": 111,
"url": "https://github.com/yarnpkg/berry/pull/411"
},
{
"additions": 105,
"body": 663,
"createdAt": "2019-08-27T16:41:01Z",
"deletions": 4,
"url": "https://github.com/yarnpkg/berry/pull/408"
},
{
"additions": 19,
"body": 391,
"createdAt": "2019-08-27T13:35:39Z",
"deletions": 2,
"url": "https://github.com/yarnpkg/berry/pull/406"
},
{
"additions": 17,
"body": 528,
"createdAt": "2019-08-27T11:32:20Z",
"deletions": 1,
"url": "https://github.com/vercel/next.js/pull/8531"
},
{
"additions": 39,
"body": 789,
"createdAt": "2019-08-27T08:44:21Z",
"deletions": 3,
"url": "https://github.com/yarnpkg/berry/pull/403"
},
{
"additions": 12,
"body": 1127,
"createdAt": "2019-08-26T18:34:29Z",
"deletions": 114,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/37934"
},
{
"additions": 4,
"body": 985,
"createdAt": "2019-08-26T17:56:26Z",
"deletions": 1,
"url": "https://github.com/mbrn/material-table/pull/1035"
},
{
"additions": 3,
"body": 217,
"createdAt": "2019-08-26T17:49:55Z",
"deletions": 0,
"url": "https://github.com/oliviertassinari/react-swipeable-views/pull/539"
},
{
"additions": 1,
"body": 594,
"createdAt": "2019-08-26T16:38:15Z",
"deletions": 0,
"url": "https://github.com/yarnpkg/berry/pull/401"
},
{
"additions": 26,
"body": 588,
"createdAt": "2019-08-25T12:56:05Z",
"deletions": 3,
"url": "https://github.com/yarnpkg/berry/pull/391"
},
{
"additions": 108,
"body": 468,
"createdAt": "2019-08-23T18:46:08Z",
"deletions": 42,
"url": "https://github.com/yarnpkg/berry/pull/389"
},
{
"additions": 203,
"body": 1598,
"createdAt": "2019-08-23T18:06:33Z",
"deletions": 29,
"url": "https://github.com/yarnpkg/berry/pull/388"
},
{
"additions": 23,
"body": 778,
"createdAt": "2019-08-23T16:59:13Z",
"deletions": 1,
"url": "https://github.com/yarnpkg/berry/pull/387"
},
{
"additions": 2,
"body": 68,
"createdAt": "2019-08-23T16:11:41Z",
"deletions": 0,
"url": "https://github.com/yarnpkg/berry/pull/386"
},
{
"additions": 27,
"body": 1183,
"createdAt": "2019-08-23T15:33:51Z",
"deletions": 8,
"url": "https://github.com/yarnpkg/berry/pull/385"
},
{
"additions": 20,
"body": 521,
"createdAt": "2019-08-23T13:28:04Z",
"deletions": 3,
"url": "https://github.com/yarnpkg/berry/pull/384"
},
{
"additions": 1,
"body": 151,
"createdAt": "2019-08-23T13:15:14Z",
"deletions": 0,
"url": "https://github.com/microsoft/types-publisher/pull/650"
},
{
"additions": 96,
"body": 22,
"createdAt": "2019-08-22T07:57:38Z",
"deletions": 79,
"url": "https://github.com/eps1lon/material-ui-playroom/pull/64"
},
{
"additions": 74,
"body": 345,
"createdAt": "2019-08-21T16:00:57Z",
"deletions": 39,
"url": "https://github.com/arcanis/clipanion/pull/6"
},
{
"additions": 190,
"body": 555,
"createdAt": "2019-08-21T13:49:37Z",
"deletions": 4,
"url": "https://github.com/yarnpkg/berry/pull/371"
},
{
"additions": 235,
"body": 462,
"createdAt": "2019-08-14T09:11:14Z",
"deletions": 297,
"url": "https://github.com/alexkrolick/DefinitelyTyped/pull/1"
},
{
"additions": 6,
"body": 1031,
"createdAt": "2019-08-12T07:47:58Z",
"deletions": 2,
"url": "https://github.com/testing-library/react-testing-library/pull/438"
},
{
"additions": 7,
"body": 1090,
"createdAt": "2019-08-12T07:25:16Z",
"deletions": 6,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/37554"
},
{
"additions": 20,
"body": 20,
"createdAt": "2019-08-09T06:48:22Z",
"deletions": 21,
"url": "https://github.com/eps1lon/material-ui-playroom/pull/50"
},
{
"additions": 32,
"body": 406,
"createdAt": "2019-08-08T12:21:55Z",
"deletions": 0,
"url": "https://github.com/sveltejs/svelte/pull/3379"
},
{
"additions": 4,
"body": 165,
"createdAt": "2019-08-05T11:32:26Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/16893"
},
{
"additions": 18,
"body": 403,
"createdAt": "2019-08-05T05:53:09Z",
"deletions": 1,
"url": "https://github.com/eps1lon/azure-pipelines-source-version/pull/1"
},
{
"additions": 2,
"body": 249,
"createdAt": "2019-08-04T12:39:47Z",
"deletions": 2,
"url": "https://github.com/microsoft/azure-devops-node-api/pull/338"
},
{
"additions": 4,
"body": 545,
"createdAt": "2019-08-03T15:57:09Z",
"deletions": 2,
"url": "https://github.com/yarnpkg/berry/pull/333"
},
{
"additions": 3,
"body": 341,
"createdAt": "2019-08-03T15:20:08Z",
"deletions": 3,
"url": "https://github.com/yarnpkg/berry/pull/331"
},
{
"additions": 8,
"body": 852,
"createdAt": "2019-07-31T13:27:41Z",
"deletions": 1,
"url": "https://github.com/paularmstrong/build-tracker/pull/83"
},
{
"additions": 6,
"body": 5003,
"createdAt": "2019-07-31T07:43:02Z",
"deletions": 5,
"url": "https://github.com/mui-org/material-ui/pull/16823"
},
{
"additions": 59,
"body": 0,
"createdAt": "2019-07-30T19:34:38Z",
"deletions": 39,
"url": "https://github.com/eps1lon/berry-sapper/pull/1"
},
{
"additions": 2,
"body": 96,
"createdAt": "2019-07-30T10:34:56Z",
"deletions": 0,
"url": "https://github.com/arcanis/jest-pnp-resolver/pull/9"
},
{
"additions": 44,
"body": 603,
"createdAt": "2019-07-30T09:13:24Z",
"deletions": 0,
"url": "https://github.com/testing-library/svelte-testing-library/pull/41"
},
{
"additions": 0,
"body": 69,
"createdAt": "2019-07-29T07:06:31Z",
"deletions": 0,
"url": "https://github.com/eps1lon/material-ui-playroom/pull/30"
},
{
"additions": 4,
"body": 103,
"createdAt": "2019-07-29T06:51:29Z",
"deletions": 2,
"url": "https://github.com/eps1lon/material-ui-playroom/pull/29"
},
{
"additions": 89,
"body": 58,
"createdAt": "2019-07-29T06:43:40Z",
"deletions": 78,
"url": "https://github.com/eps1lon/material-ui-playroom/pull/28"
},
{
"additions": 4,
"body": 29,
"createdAt": "2019-07-28T11:36:51Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/16781"
},
{
"additions": 156,
"body": 1049,
"createdAt": "2019-07-28T11:15:47Z",
"deletions": 155,
"url": "https://github.com/mui-org/material-ui/pull/16780"
},
{
"additions": 519,
"body": 71,
"createdAt": "2019-07-26T08:45:40Z",
"deletions": 303,
"url": "https://github.com/mui-org/material-ui/pull/16755"
},
{
"additions": 6,
"body": 264,
"createdAt": "2019-07-26T06:45:19Z",
"deletions": 0,
"url": "https://github.com/vercel/next.js/pull/8121"
},
{
"additions": 5,
"body": 132,
"createdAt": "2019-07-25T15:32:25Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/16750"
},
{
"additions": 190,
"body": 0,
"createdAt": "2019-07-24T19:42:03Z",
"deletions": 128,
"url": "https://github.com/eps1lon/material-ui-playroom/pull/24"
},
{
"additions": 148,
"body": 322,
"createdAt": "2019-07-24T19:01:21Z",
"deletions": 148,
"url": "https://github.com/mui-org/material-ui/pull/16739"
},
{
"additions": 0,
"body": 33,
"createdAt": "2019-07-24T15:44:56Z",
"deletions": 2,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/4"
},
{
"additions": 5,
"body": 531,
"createdAt": "2019-07-24T14:11:29Z",
"deletions": 15,
"url": "https://github.com/mui-org/material-ui/pull/16731"
},
{
"additions": 1,
"body": 76,
"createdAt": "2019-07-24T12:47:51Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/16725"
},
{
"additions": 11,
"body": 80,
"createdAt": "2019-07-23T20:48:23Z",
"deletions": 11,
"url": "https://github.com/TrySound/rollup-plugin-size-snapshot/pull/32"
},
{
"additions": 4,
"body": 408,
"createdAt": "2019-07-23T15:29:06Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/16702"
},
{
"additions": 122,
"body": 150,
"createdAt": "2019-07-23T10:44:43Z",
"deletions": 107,
"url": "https://github.com/mui-org/material-ui/pull/16699"
},
{
"additions": 7,
"body": 482,
"createdAt": "2019-07-22T19:33:04Z",
"deletions": 20,
"url": "https://github.com/mui-org/material-ui/pull/16688"
},
{
"additions": 1,
"body": 45,
"createdAt": "2019-07-22T14:53:26Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/16680"
},
{
"additions": 2086,
"body": 2193,
"createdAt": "2019-07-22T12:29:11Z",
"deletions": 1560,
"url": "https://github.com/mui-org/material-ui/pull/16679"
},
{
"additions": 0,
"body": 740,
"createdAt": "2019-07-22T10:55:39Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/16677"
},
{
"additions": 294,
"body": 1169,
"createdAt": "2019-07-18T14:22:50Z",
"deletions": 279,
"url": "https://github.com/mui-org/material-ui/pull/16640"
},
{
"additions": 19,
"body": 855,
"createdAt": "2019-07-16T17:40:18Z",
"deletions": 11,
"url": "https://github.com/mui-org/material-ui/pull/16613"
},
{
"additions": 27,
"body": 776,
"createdAt": "2019-07-12T13:10:26Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/16587"
},
{
"additions": 60,
"body": 522,
"createdAt": "2019-07-12T10:48:40Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/16585"
},
{
"additions": 299,
"body": 595,
"createdAt": "2019-07-12T08:55:09Z",
"deletions": 402,
"url": "https://github.com/mui-org/material-ui/pull/16582"
},
{
"additions": 454,
"body": 95,
"createdAt": "2019-07-10T10:11:02Z",
"deletions": 771,
"url": "https://github.com/mui-org/material-ui/pull/16546"
},
{
"additions": 29,
"body": 64,
"createdAt": "2019-07-09T19:53:05Z",
"deletions": 28,
"url": "https://github.com/mui-org/material-ui/pull/16539"
},
{
"additions": 353,
"body": 283,
"createdAt": "2019-07-09T19:38:43Z",
"deletions": 415,
"url": "https://github.com/mui-org/material-ui/pull/16538"
},
{
"additions": 11,
"body": 70,
"createdAt": "2019-07-09T11:27:03Z",
"deletions": 1,
"url": "https://github.com/reactjs/react-docgen/pull/378"
},
{
"additions": 5,
"body": 498,
"createdAt": "2019-07-09T10:26:17Z",
"deletions": 107,
"url": "https://github.com/mui-org/material-ui/pull/16526"
},
{
"additions": 103,
"body": 510,
"createdAt": "2019-07-09T09:45:33Z",
"deletions": 113,
"url": "https://github.com/mui-org/material-ui/pull/16525"
},
{
"additions": 763,
"body": 120,
"createdAt": "2019-07-06T11:26:02Z",
"deletions": 747,
"url": "https://github.com/mui-org/material-ui/pull/16503"
},
{
"additions": 157,
"body": 562,
"createdAt": "2019-07-03T15:16:06Z",
"deletions": 89,
"url": "https://github.com/mui-org/material-ui/pull/16467"
},
{
"additions": 17,
"body": 223,
"createdAt": "2019-07-03T08:53:40Z",
"deletions": 16,
"url": "https://github.com/mui-org/material-ui/pull/16461"
},
{
"additions": 933,
"body": 137,
"createdAt": "2019-07-02T14:54:17Z",
"deletions": 780,
"url": "https://github.com/mui-org/material-ui/pull/16453"
},
{
"additions": 6,
"body": 46,
"createdAt": "2019-07-01T19:27:27Z",
"deletions": 3,
"url": "https://github.com/testing-library/testing-library-docs/pull/173"
},
{
"additions": 79,
"body": 186,
"createdAt": "2019-07-01T12:17:20Z",
"deletions": 2,
"url": "https://github.com/testing-library/testing-library-docs/pull/172"
},
{
"additions": 38,
"body": 507,
"createdAt": "2019-07-01T10:43:16Z",
"deletions": 0,
"url": "https://github.com/testing-library/dom-testing-library/pull/301"
},
{
"additions": 2,
"body": 322,
"createdAt": "2019-06-30T14:06:46Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/16432"
},
{
"additions": 5,
"body": 178,
"createdAt": "2019-06-29T11:44:59Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/16423"
},
{
"additions": 69,
"body": 632,
"createdAt": "2019-06-29T06:43:57Z",
"deletions": 34,
"url": "https://github.com/mui-org/material-ui/pull/16420"
},
{
"additions": 353,
"body": 1018,
"createdAt": "2019-06-28T10:46:17Z",
"deletions": 27,
"url": "https://github.com/mui-org/material-ui/pull/16410"
},
{
"additions": 25,
"body": 970,
"createdAt": "2019-06-28T07:42:51Z",
"deletions": 71,
"url": "https://github.com/mui-org/material-ui/pull/16405"
},
{
"additions": 181,
"body": 85,
"createdAt": "2019-06-27T15:33:05Z",
"deletions": 15,
"url": "https://github.com/mui-org/material-ui/pull/16399"
},
{
"additions": 20,
"body": 178,
"createdAt": "2019-06-27T13:17:37Z",
"deletions": 10,
"url": "https://github.com/mui-org/material-ui/pull/16397"
},
{
"additions": 67,
"body": 451,
"createdAt": "2019-06-27T08:48:32Z",
"deletions": 24,
"url": "https://github.com/mui-org/material-ui/pull/16392"
},
{
"additions": 108,
"body": 209,
"createdAt": "2019-06-26T10:34:41Z",
"deletions": 15,
"url": "https://github.com/mui-org/material-ui/pull/16380"
},
{
"additions": 49,
"body": 85,
"createdAt": "2019-06-25T14:46:05Z",
"deletions": 36,
"url": "https://github.com/mui-org/material-ui/pull/16368"
},
{
"additions": 459,
"body": 480,
"createdAt": "2019-06-25T08:48:32Z",
"deletions": 369,
"url": "https://github.com/mui-org/material-ui/pull/16361"
},
{
"additions": 45,
"body": 1533,
"createdAt": "2019-06-24T14:28:29Z",
"deletions": 4,
"url": "https://github.com/testing-library/react-testing-library/pull/394"
},
{
"additions": 134,
"body": 138,
"createdAt": "2019-06-24T08:48:07Z",
"deletions": 125,
"url": "https://github.com/mui-org/material-ui/pull/16348"
},
{
"additions": 1,
"body": 47,
"createdAt": "2019-06-23T18:53:40Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/16342"
},
{
"additions": 6,
"body": 1041,
"createdAt": "2019-06-23T15:21:56Z",
"deletions": 6,
"url": "https://github.com/testing-library/dom-testing-library/pull/296"
},
{
"additions": 67,
"body": 743,
"createdAt": "2019-06-23T14:26:40Z",
"deletions": 0,
"url": "https://github.com/testing-library/dom-testing-library/pull/295"
},
{
"additions": 327,
"body": 310,
"createdAt": "2019-06-21T14:03:44Z",
"deletions": 414,
"url": "https://github.com/mui-org/material-ui/pull/16323"
},
{
"additions": 6,
"body": 882,
"createdAt": "2019-06-19T13:29:30Z",
"deletions": 9,
"url": "https://github.com/mui-org/material-ui/pull/16291"
},
{
"additions": 125,
"body": 393,
"createdAt": "2019-06-18T20:48:25Z",
"deletions": 133,
"url": "https://github.com/mui-org/material-ui/pull/16283"
},
{
"additions": 2,
"body": 97,
"createdAt": "2019-06-18T13:47:25Z",
"deletions": 2,
"url": "https://github.com/reactjs/react-transition-group/pull/512"
},
{
"additions": 53,
"body": 728,
"createdAt": "2019-06-18T09:37:02Z",
"deletions": 44,
"url": "https://github.com/mui-org/material-ui/pull/16275"
},
{
"additions": 11,
"body": 125,
"createdAt": "2019-06-18T08:40:15Z",
"deletions": 11,
"url": "https://github.com/mui-org/material-ui/pull/16274"
},
{
"additions": 2,
"body": 158,
"createdAt": "2019-06-17T07:43:18Z",
"deletions": 18,
"url": "https://github.com/mui-org/material-ui/pull/16261"
},
{
"additions": 24,
"body": 390,
"createdAt": "2019-06-16T19:23:55Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/16256"
},
{
"additions": 1,
"body": 177,
"createdAt": "2019-06-16T15:24:34Z",
"deletions": 8,
"url": "https://github.com/JedWatson/react-select/pull/3630"
},
{
"additions": 37,
"body": 13,
"createdAt": "2019-06-14T07:18:14Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/16226"
},
{
"additions": 33,
"body": 545,
"createdAt": "2019-06-13T14:16:17Z",
"deletions": 26,
"url": "https://github.com/mui-org/material-ui/pull/16211"
},
{
"additions": 8,
"body": 191,
"createdAt": "2019-06-13T12:35:57Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/16208"
},
{
"additions": 5,
"body": 153,
"createdAt": "2019-06-13T12:15:31Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/16207"
},
{
"additions": 68,
"body": 452,
"createdAt": "2019-06-12T23:24:08Z",
"deletions": 41,
"url": "https://github.com/mui-org/material-ui/pull/16197"
},
{
"additions": 68,
"body": 250,
"createdAt": "2019-06-12T19:34:43Z",
"deletions": 7,
"url": "https://github.com/mui-org/material-ui/pull/16187"
},
{
"additions": 167,
"body": 585,
"createdAt": "2019-06-12T16:55:43Z",
"deletions": 69,
"url": "https://github.com/mui-org/material-ui/pull/16182"
},
{
"additions": 4,
"body": 249,
"createdAt": "2019-06-09T15:14:12Z",
"deletions": 66,
"url": "https://github.com/eps1lon/material-ui/pull/11"
},
{
"additions": 106,
"body": 249,
"createdAt": "2019-06-09T13:07:37Z",
"deletions": 2,
"url": "https://github.com/eps1lon/material-ui/pull/10"
},
{
"additions": 103,
"body": 425,
"createdAt": "2019-06-08T21:35:56Z",
"deletions": 102,
"url": "https://github.com/mui-org/material-ui/pull/16121"
},
{
"additions": 58,
"body": 76,
"createdAt": "2019-06-08T19:26:04Z",
"deletions": 91,
"url": "https://github.com/mui-org/material-ui/pull/16119"
},
{
"additions": 7,
"body": 249,
"createdAt": "2019-06-07T14:22:26Z",
"deletions": 0,
"url": "https://github.com/eps1lon/material-ui/pull/9"
},
{
"additions": 204,
"body": 165,
"createdAt": "2019-06-07T10:57:46Z",
"deletions": 205,
"url": "https://github.com/mui-org/material-ui/pull/16106"
},
{
"additions": 13,
"body": 223,
"createdAt": "2019-06-05T19:05:03Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/16077"
},
{
"additions": 7,
"body": 111,
"createdAt": "2019-06-05T14:41:15Z",
"deletions": 14,
"url": "https://github.com/mui-org/material-ui/pull/16071"
},
{
"additions": 59,
"body": 949,
"createdAt": "2019-06-05T10:57:41Z",
"deletions": 9,
"url": "https://github.com/mui-org/material-ui/pull/16063"
},
{
"additions": 32,
"body": 20,
"createdAt": "2019-06-04T17:25:39Z",
"deletions": 17,
"url": "https://github.com/mui-org/material-ui/pull/16048"
},
{
"additions": 58,
"body": 593,
"createdAt": "2019-06-04T14:13:19Z",
"deletions": 37,
"url": "https://github.com/mui-org/material-ui/pull/16046"
},
{
"additions": 47,
"body": 199,
"createdAt": "2019-06-03T20:16:13Z",
"deletions": 96,
"url": "https://github.com/mui-org/material-ui/pull/16039"
},
{
"additions": 170,
"body": 63,
"createdAt": "2019-06-02T19:01:51Z",
"deletions": 136,
"url": "https://github.com/mui-org/material-ui/pull/16002"
},
{
"additions": 40,
"body": 692,
"createdAt": "2019-05-29T19:33:41Z",
"deletions": 21,
"url": "https://github.com/mui-org/material-ui/pull/15944"
},
{
"additions": 1,
"body": 167,
"createdAt": "2019-05-29T08:09:11Z",
"deletions": 1,
"url": "https://github.com/facebook/create-react-app/pull/7131"
},
{
"additions": 2,
"body": 290,
"createdAt": "2019-05-28T20:16:01Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/15921"
},
{
"additions": 1,
"body": 112,
"createdAt": "2019-05-28T14:50:10Z",
"deletions": 0,
"url": "https://github.com/bvaughn/react-virtualized/pull/1380"
},
{
"additions": 9,
"body": 718,
"createdAt": "2019-05-28T10:44:42Z",
"deletions": 19,
"url": "https://github.com/mui-org/material-ui/pull/15913"
},
{
"additions": 43,
"body": 0,
"createdAt": "2019-05-27T20:19:17Z",
"deletions": 8,
"url": "https://github.com/eps1lon/mui-scripts-incubator/pull/1"
},
{
"additions": 348,
"body": 1163,
"createdAt": "2019-05-27T19:42:28Z",
"deletions": 183,
"url": "https://github.com/mui-org/material-ui/pull/15901"
},
{
"additions": 175,
"body": 758,
"createdAt": "2019-05-27T16:50:53Z",
"deletions": 409,
"url": "https://github.com/mui-org/material-ui/pull/15895"
},
{
"additions": 35,
"body": 352,
"createdAt": "2019-05-27T13:51:10Z",
"deletions": 26,
"url": "https://github.com/mui-org/material-ui/pull/15890"
},
{
"additions": 16,
"body": 13,
"createdAt": "2019-05-27T09:34:32Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/15885"
},
{
"additions": 49,
"body": 366,
"createdAt": "2019-05-27T09:12:40Z",
"deletions": 65,
"url": "https://github.com/mui-org/material-ui/pull/15884"
},
{
"additions": 385,
"body": 533,
"createdAt": "2019-05-26T18:45:31Z",
"deletions": 414,
"url": "https://github.com/mui-org/material-ui/pull/15874"
},
{
"additions": 19,
"body": 600,
"createdAt": "2019-05-25T19:44:55Z",
"deletions": 33,
"url": "https://github.com/mui-org/material-ui/pull/15859"
},
{
"additions": 34,
"body": 190,
"createdAt": "2019-05-25T18:43:16Z",
"deletions": 18,
"url": "https://github.com/mui-org/material-ui/pull/15857"
},
{
"additions": 1,
"body": 302,
"createdAt": "2019-05-25T17:49:18Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/15853"
},
{
"additions": 26,
"body": 1129,
"createdAt": "2019-05-25T16:26:02Z",
"deletions": 54,
"url": "https://github.com/mui-org/material-ui/pull/15851"
},
{
"additions": 5,
"body": 190,
"createdAt": "2019-05-25T15:49:25Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/15849"
},
{
"additions": 654,
"body": 472,
"createdAt": "2019-05-21T19:43:17Z",
"deletions": 349,
"url": "https://github.com/mui-org/material-ui/pull/15780"
},
{
"additions": 1,
"body": 1052,
"createdAt": "2019-05-21T19:24:08Z",
"deletions": 0,
"url": "https://github.com/babel/babel/pull/10010"
},
{
"additions": 33,
"body": 348,
"createdAt": "2019-05-20T13:15:48Z",
"deletions": 26,
"url": "https://github.com/mui-org/material-ui/pull/15758"
},
{
"additions": 1055,
"body": 276,
"createdAt": "2019-05-20T10:07:19Z",
"deletions": 75,
"url": "https://github.com/mui-org/material-ui/pull/15755"
},
{
"additions": 14,
"body": 122,
"createdAt": "2019-05-20T09:41:35Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/15753"
},
{
"additions": 9,
"body": 371,
"createdAt": "2019-05-19T08:51:16Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/15748"
},
{
"additions": 9,
"body": 362,
"createdAt": "2019-05-18T11:30:30Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/15740"
},
{
"additions": 61,
"body": 427,
"createdAt": "2019-05-18T10:41:17Z",
"deletions": 16,
"url": "https://github.com/mui-org/material-ui/pull/15739"
},
{
"additions": 181,
"body": 4699,
"createdAt": "2019-05-17T12:26:13Z",
"deletions": 52,
"url": "https://github.com/mui-org/material-ui/pull/15732"
},
{
"additions": 511,
"body": 847,
"createdAt": "2019-05-15T21:16:15Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/15718"
},
{
"additions": 496,
"body": 617,
"createdAt": "2019-05-15T20:57:24Z",
"deletions": 481,
"url": "https://github.com/mui-org/material-ui/pull/15716"
},
{
"additions": 48,
"body": 180,
"createdAt": "2019-05-15T18:23:21Z",
"deletions": 103,
"url": "https://github.com/mui-org/material-ui/pull/15714"
},
{
"additions": 124,
"body": 263,
"createdAt": "2019-05-15T13:18:01Z",
"deletions": 42,
"url": "https://github.com/mui-org/material-ui/pull/15712"
},
{
"additions": 13,
"body": 228,
"createdAt": "2019-05-15T11:04:16Z",
"deletions": 15,
"url": "https://github.com/mui-org/material-ui/pull/15707"
},
{
"additions": 22,
"body": 108,
"createdAt": "2019-05-14T20:55:47Z",
"deletions": 28,
"url": "https://github.com/typescript-cheatsheets/react/pull/123"
},
{
"additions": 169,
"body": 805,
"createdAt": "2019-05-14T18:26:50Z",
"deletions": 145,
"url": "https://github.com/typescript-cheatsheets/react/pull/122"
},
{
"additions": 62,
"body": 0,
"createdAt": "2019-05-14T11:44:46Z",
"deletions": 20,
"url": "https://github.com/mui-org/material-ui/pull/15691"
},
{
"additions": 47,
"body": 261,
"createdAt": "2019-05-13T18:53:48Z",
"deletions": 45,
"url": "https://github.com/mui-org/material-ui/pull/15683"
},
{
"additions": 1,
"body": 99,
"createdAt": "2019-05-13T10:12:08Z",
"deletions": 1,
"url": "https://github.com/seek-oss/playroom/pull/71"
},
{
"additions": 175,
"body": 112,
"createdAt": "2019-05-11T14:16:13Z",
"deletions": 81,
"url": "https://github.com/mui-org/material-ui/pull/15665"
},
{
"additions": 1854,
"body": 0,
"createdAt": "2019-05-10T15:39:57Z",
"deletions": 70,
"url": "https://github.com/eps1lon/material-ui-playroom/pull/5"
},
{
"additions": 163,
"body": 62,
"createdAt": "2019-05-10T15:31:39Z",
"deletions": 24,
"url": "https://github.com/eps1lon/material-ui-playroom/pull/4"
},
{
"additions": 271,
"body": 0,
"createdAt": "2019-05-10T15:16:18Z",
"deletions": 283,
"url": "https://github.com/eps1lon/material-ui-playroom/pull/3"
},
{
"additions": 1248,
"body": 74,
"createdAt": "2019-05-10T14:45:18Z",
"deletions": 24,
"url": "https://github.com/eps1lon/material-ui-playroom/pull/2"
},
{
"additions": 446,
"body": 318,
"createdAt": "2019-05-10T12:48:56Z",
"deletions": 13,
"url": "https://github.com/eps1lon/material-ui-playroom/pull/1"
},
{
"additions": 12,
"body": 115,
"createdAt": "2019-05-09T17:05:18Z",
"deletions": 7,
"url": "https://github.com/mui-org/material-ui/pull/15640"
},
{
"additions": 2,
"body": 558,
"createdAt": "2019-05-08T20:48:18Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/15630"
},
{
"additions": 51,
"body": 690,
"createdAt": "2019-05-08T09:34:18Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/15627"
},
{
"additions": 179,
"body": 247,
"createdAt": "2019-05-07T13:46:04Z",
"deletions": 210,
"url": "https://github.com/mui-org/material-ui/pull/15615"
},
{
"additions": 54,
"body": 179,
"createdAt": "2019-05-07T08:08:05Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/15611"
},
{
"additions": 161,
"body": 131,
"createdAt": "2019-05-03T10:12:59Z",
"deletions": 79,
"url": "https://github.com/mui-org/material-ui/pull/15577"
},
{
"additions": 14,
"body": 124,
"createdAt": "2019-05-03T09:07:01Z",
"deletions": 30,
"url": "https://github.com/mui-org/material-ui/pull/15575"
},
{
"additions": 155,
"body": 0,
"createdAt": "2019-05-02T15:11:31Z",
"deletions": 121,
"url": "https://github.com/eps1lon/react-typescript-cheatsheet/pull/2"
},
{
"additions": 3,
"body": 6,
"createdAt": "2019-05-02T13:54:38Z",
"deletions": 0,
"url": "https://github.com/eps1lon/crowdin-prettier/pull/1"
},
{
"additions": 42,
"body": 180,
"createdAt": "2019-05-02T13:20:35Z",
"deletions": 96,
"url": "https://github.com/mui-org/material-ui/pull/15562"
},
{
"additions": 102,
"body": 392,
"createdAt": "2019-04-30T06:46:38Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/15526"
},
{
"additions": 4,
"body": 19,
"createdAt": "2019-04-29T16:36:51Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/15520"
},
{
"additions": 250,
"body": 194,
"createdAt": "2019-04-29T15:04:01Z",
"deletions": 28,
"url": "https://github.com/mui-org/material-ui/pull/15519"
},
{
"additions": 26,
"body": 2455,
"createdAt": "2019-04-26T07:52:19Z",
"deletions": 2,
"url": "https://github.com/babel/babel/pull/9902"
},
{
"additions": 30,
"body": 175,
"createdAt": "2019-04-25T19:54:57Z",
"deletions": 20,
"url": "https://github.com/mui-org/material-ui/pull/15491"
},
{
"additions": 160,
"body": 821,
"createdAt": "2019-04-25T15:20:22Z",
"deletions": 155,
"url": "https://github.com/mui-org/material-ui/pull/15484"
},
{
"additions": 2,
"body": 273,
"createdAt": "2019-04-25T13:24:11Z",
"deletions": 2,
"url": "https://github.com/WICG/focus-visible/pull/194"
},
{
"additions": 590,
"body": 639,
"createdAt": "2019-04-24T13:28:01Z",
"deletions": 848,
"url": "https://github.com/mui-org/material-ui/pull/15473"
},
{
"additions": 1,
"body": 117,
"createdAt": "2019-04-24T13:17:14Z",
"deletions": 0,
"url": "https://github.com/reactjs/react-docgen/pull/351"
},
{
"additions": 58,
"body": 230,
"createdAt": "2019-04-24T10:59:13Z",
"deletions": 3,
"url": "https://github.com/reactjs/react-docgen/pull/350"
},
{
"additions": 6,
"body": 124,
"createdAt": "2019-04-23T16:45:42Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/15463"
},
{
"additions": 3,
"body": 83,
"createdAt": "2019-04-23T16:17:21Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/15462"
},
{
"additions": 1,
"body": 281,
"createdAt": "2019-04-23T15:25:44Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/15460"
},
{
"additions": 49,
"body": 74,
"createdAt": "2019-04-23T15:07:25Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/15459"
},
{
"additions": 64,
"body": 165,
"createdAt": "2019-04-23T14:46:23Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/15458"
},
{
"additions": 11,
"body": 48,
"createdAt": "2019-04-20T17:19:53Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/15425"
},
{
"additions": 97,
"body": 528,
"createdAt": "2019-04-18T13:09:59Z",
"deletions": 24,
"url": "https://github.com/mui-org/material-ui/pull/15398"
},
{
"additions": 2,
"body": 98,
"createdAt": "2019-04-17T15:39:08Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/15385"
},
{
"additions": 34,
"body": 13,
"createdAt": "2019-04-17T15:01:55Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/15383"
},
{
"additions": 61,
"body": 126,
"createdAt": "2019-04-17T14:44:16Z",
"deletions": 87,
"url": "https://github.com/mui-org/material-ui/pull/15382"
},
{
"additions": 21,
"body": 162,
"createdAt": "2019-04-17T10:50:02Z",
"deletions": 16,
"url": "https://github.com/mui-org/material-ui/pull/15381"
},
{
"additions": 9,
"body": 188,
"createdAt": "2019-04-17T08:53:30Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/15380"
},
{
"additions": 19,
"body": 258,
"createdAt": "2019-04-16T17:53:39Z",
"deletions": 10,
"url": "https://github.com/mui-org/material-ui/pull/15375"
},
{
"additions": 49,
"body": 136,
"createdAt": "2019-04-16T14:48:41Z",
"deletions": 41,
"url": "https://github.com/mui-org/material-ui/pull/15370"
},
{
"additions": 29,
"body": 302,
"createdAt": "2019-04-16T12:25:51Z",
"deletions": 4,
"url": "https://github.com/enzymejs/enzyme/pull/2100"
},
{
"additions": 20,
"body": 186,
"createdAt": "2019-04-16T10:18:25Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/15365"
},
{
"additions": 7,
"body": 593,
"createdAt": "2019-04-16T10:00:21Z",
"deletions": 100,
"url": "https://github.com/mui-org/material-ui/pull/15364"
},
{
"additions": 422,
"body": 155,
"createdAt": "2019-04-15T16:48:50Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/15357"
},
{
"additions": 32,
"body": 196,
"createdAt": "2019-04-11T21:53:18Z",
"deletions": 21,
"url": "https://github.com/mui-org/material-ui/pull/15322"
},
{
"additions": 99,
"body": 164,
"createdAt": "2019-04-11T21:20:06Z",
"deletions": 57,
"url": "https://github.com/mui-org/material-ui/pull/15321"
},
{
"additions": 1,
"body": 429,
"createdAt": "2019-04-11T15:56:37Z",
"deletions": 51,
"url": "https://github.com/mui-org/material-ui/pull/15319"
},
{
"additions": 378,
"body": 861,
"createdAt": "2019-04-11T15:20:19Z",
"deletions": 283,
"url": "https://github.com/mui-org/material-ui/pull/15317"
},
{
"additions": 9,
"body": 0,
"createdAt": "2019-04-11T13:19:50Z",
"deletions": 6,
"url": "https://github.com/eps1lon/react-transition-group/pull/3"
},
{
"additions": 15,
"body": 548,
"createdAt": "2019-04-11T13:04:17Z",
"deletions": 2,
"url": "https://github.com/eps1lon/react-transition-group/pull/2"
},
{
"additions": 65,
"body": 49,
"createdAt": "2019-04-11T12:56:02Z",
"deletions": 53,
"url": "https://github.com/eps1lon/react-transition-group/pull/1"
},
{
"additions": 49,
"body": 138,
"createdAt": "2019-04-11T11:44:55Z",
"deletions": 41,
"url": "https://github.com/mui-org/material-ui/pull/15312"
},
{
"additions": 66,
"body": 0,
"createdAt": "2019-04-10T18:44:43Z",
"deletions": 75,
"url": "https://github.com/mui-org/material-ui/pull/15309"
},
{
"additions": 159,
"body": 227,
"createdAt": "2019-04-10T13:45:57Z",
"deletions": 92,
"url": "https://github.com/mui-org/material-ui/pull/15298"
},
{
"additions": 32,
"body": 150,
"createdAt": "2019-04-10T08:24:26Z",
"deletions": 33,
"url": "https://github.com/mui-org/material-ui/pull/15296"
},
{
"additions": 3,
"body": 595,
"createdAt": "2019-04-09T11:36:40Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/15282"
},
{
"additions": 89,
"body": 400,
"createdAt": "2019-04-09T11:24:57Z",
"deletions": 107,
"url": "https://github.com/mui-org/material-ui/pull/15281"
},
{
"additions": 39,
"body": 275,
"createdAt": "2019-04-09T07:52:37Z",
"deletions": 17,
"url": "https://github.com/mui-org/material-ui/pull/15276"
},
{
"additions": 16,
"body": 108,
"createdAt": "2019-04-08T13:14:17Z",
"deletions": 37,
"url": "https://github.com/mui-org/material-ui/pull/15261"
},
{
"additions": 31,
"body": 169,
"createdAt": "2019-04-08T13:04:41Z",
"deletions": 352,
"url": "https://github.com/mui-org/material-ui/pull/15260"
},
{
"additions": 11,
"body": 113,
"createdAt": "2019-04-08T11:01:04Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/15259"
},
{
"additions": 178,
"body": 2088,
"createdAt": "2019-04-05T22:57:09Z",
"deletions": 2,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/34520"
},
{
"additions": 15,
"body": 231,
"createdAt": "2019-04-05T12:59:25Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/15215"
},
{
"additions": 15,
"body": 41,
"createdAt": "2019-04-05T11:11:58Z",
"deletions": 4,
"url": "https://github.com/gaearon/react-hot-loader/pull/1221"
},
{
"additions": 9,
"body": 781,
"createdAt": "2019-04-05T09:48:41Z",
"deletions": 10,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/34499"
},
{
"additions": 17,
"body": 19,
"createdAt": "2019-04-04T21:26:57Z",
"deletions": 10,
"url": "https://github.com/mui-org/material-ui/pull/15206"
},
{
"additions": 86,
"body": 2659,
"createdAt": "2019-04-04T17:43:39Z",
"deletions": 35,
"url": "https://github.com/mui-org/material-ui/pull/15199"
},
{
"additions": 115,
"body": 182,
"createdAt": "2019-04-04T11:09:28Z",
"deletions": 104,
"url": "https://github.com/mui-org/material-ui/pull/15193"
},
{
"additions": 6,
"body": 1230,
"createdAt": "2019-04-04T09:49:25Z",
"deletions": 3,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/34464"
},
{
"additions": 20,
"body": 274,
"createdAt": "2019-04-03T21:03:07Z",
"deletions": 7,
"url": "https://github.com/enzymejs/enzyme/pull/2081"
},
{
"additions": 75,
"body": 212,
"createdAt": "2019-04-03T16:10:16Z",
"deletions": 7,
"url": "https://github.com/mui-org/material-ui/pull/15181"
},
{
"additions": 129,
"body": 124,
"createdAt": "2019-04-03T15:01:01Z",
"deletions": 90,
"url": "https://github.com/mui-org/material-ui/pull/15179"
},
{
"additions": 3,
"body": 154,
"createdAt": "2019-04-03T10:03:28Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/15174"
},
{
"additions": 102,
"body": 90,
"createdAt": "2019-04-02T23:23:30Z",
"deletions": 57,
"url": "https://github.com/mui-org/material-ui/pull/15170"
},
{
"additions": 213,
"body": 554,
"createdAt": "2019-04-02T20:14:43Z",
"deletions": 238,
"url": "https://github.com/mui-org/material-ui/pull/15168"
},
{
"additions": 7,
"body": 120,
"createdAt": "2019-04-02T16:29:21Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/15163"
},
{
"additions": 8,
"body": 237,
"createdAt": "2019-04-02T11:28:03Z",
"deletions": 12,
"url": "https://github.com/mui-org/material-ui/pull/15158"
},
{
"additions": 5,
"body": 74,
"createdAt": "2019-04-01T15:44:07Z",
"deletions": 1,
"url": "https://github.com/remix-run/react-router/pull/6680"
},
{
"additions": 355,
"body": 164,
"createdAt": "2019-03-31T21:10:27Z",
"deletions": 14,
"url": "https://github.com/mui-org/material-ui/pull/15135"
},
{
"additions": 671,
"body": 208,
"createdAt": "2019-03-31T19:41:29Z",
"deletions": 671,
"url": "https://github.com/mui-org/material-ui/pull/15132"
},
{
"additions": 179,
"body": 247,
"createdAt": "2019-03-31T19:17:11Z",
"deletions": 47,
"url": "https://github.com/mui-org/material-ui/pull/15131"
},
{
"additions": 22,
"body": 52,
"createdAt": "2019-03-31T09:13:14Z",
"deletions": 38,
"url": "https://github.com/mui-org/material-ui/pull/15129"
},
{
"additions": 65,
"body": 273,
"createdAt": "2019-03-27T07:43:11Z",
"deletions": 0,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/34253"
},
{
"additions": 21,
"body": 800,
"createdAt": "2019-03-25T15:05:28Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/15049"
},
{
"additions": 90,
"body": 281,
"createdAt": "2019-03-22T20:27:36Z",
"deletions": 126,
"url": "https://github.com/mui-org/material-ui/pull/15017"
},
{
"additions": 2,
"body": 102,
"createdAt": "2019-03-21T12:18:49Z",
"deletions": 2,
"url": "https://github.com/dmtrKovalenko/CV/pull/1"
},
{
"additions": 96,
"body": 524,
"createdAt": "2019-03-21T09:37:34Z",
"deletions": 139,
"url": "https://github.com/mui-org/material-ui/pull/14987"
},
{
"additions": 23,
"body": 269,
"createdAt": "2019-03-20T08:41:17Z",
"deletions": 23,
"url": "https://github.com/mui-org/material-ui/pull/14968"
},
{
"additions": 8,
"body": 912,
"createdAt": "2019-03-19T17:27:27Z",
"deletions": 4,
"url": "https://github.com/codesandbox/codesandbox-client/pull/1617"
},
{
"additions": 1364,
"body": 2790,
"createdAt": "2019-03-19T16:10:18Z",
"deletions": 1110,
"url": "https://github.com/mui-org/material-ui/pull/14958"
},
{
"additions": 239,
"body": 1802,
"createdAt": "2019-03-17T19:57:56Z",
"deletions": 0,
"url": "https://github.com/enzymejs/enzyme/pull/2055"
},
{
"additions": 10,
"body": 607,
"createdAt": "2019-03-15T21:26:21Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/14903"
},
{
"additions": 122,
"body": 552,
"createdAt": "2019-03-15T16:18:56Z",
"deletions": 249,
"url": "https://github.com/mui-org/material-ui/pull/14901"
},
{
"additions": 68,
"body": 103,
"createdAt": "2019-03-15T11:09:54Z",
"deletions": 23,
"url": "https://github.com/mui-org/material-ui/pull/14896"
},
{
"additions": 60,
"body": 208,
"createdAt": "2019-03-14T21:30:08Z",
"deletions": 40,
"url": "https://github.com/mui-org/material-ui/pull/14888"
},
{
"additions": 238,
"body": 969,
"createdAt": "2019-03-14T12:28:46Z",
"deletions": 13,
"url": "https://github.com/mui-org/material-ui/pull/14883"
},
{
"additions": 28,
"body": 652,
"createdAt": "2019-03-13T12:49:11Z",
"deletions": 8,
"url": "https://github.com/facebook/react/pull/15100"
},
{
"additions": 65,
"body": 397,
"createdAt": "2019-03-12T21:28:15Z",
"deletions": 53,
"url": "https://github.com/reactjs/react-transition-group/pull/471"
},
{
"additions": 41,
"body": 207,
"createdAt": "2019-03-11T14:04:35Z",
"deletions": 26,
"url": "https://github.com/mui-org/material-ui/pull/14847"
},
{
"additions": 18,
"body": 298,
"createdAt": "2019-03-10T22:53:57Z",
"deletions": 14,
"url": "https://github.com/mui-org/material-ui/pull/14837"
},
{
"additions": 40,
"body": 76,
"createdAt": "2019-03-10T22:13:02Z",
"deletions": 40,
"url": "https://github.com/mui-org/material-ui/pull/14836"
},
{
"additions": 110,
"body": 198,
"createdAt": "2019-03-10T20:59:44Z",
"deletions": 121,
"url": "https://github.com/mui-org/material-ui/pull/14833"
},
{
"additions": 4,
"body": 123,
"createdAt": "2019-03-10T18:17:56Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/14829"
},
{
"additions": 35,
"body": 63,
"createdAt": "2019-03-10T16:54:29Z",
"deletions": 26,
"url": "https://github.com/mui-org/material-ui/pull/14825"
},
{
"additions": 33,
"body": 81,
"createdAt": "2019-03-10T16:19:13Z",
"deletions": 26,
"url": "https://github.com/mui-org/material-ui/pull/14824"
},
{
"additions": 14,
"body": 271,
"createdAt": "2019-03-07T11:45:21Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/14779"
},
{
"additions": 107,
"body": 248,
"createdAt": "2019-03-06T19:39:02Z",
"deletions": 101,
"url": "https://github.com/mui-org/material-ui/pull/14775"
},
{
"additions": 9,
"body": 14,
"createdAt": "2019-03-06T14:41:04Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/14771"
},
{
"additions": 8,
"body": 412,
"createdAt": "2019-03-05T08:19:49Z",
"deletions": 9,
"url": "https://github.com/mui-org/material-ui/pull/14745"
},
{
"additions": 865,
"body": 13,
"createdAt": "2019-03-04T19:35:38Z",
"deletions": 18,
"url": "https://github.com/mui-org/material-ui/pull/14739"
},
{
"additions": 61,
"body": 16,
"createdAt": "2019-03-04T19:30:07Z",
"deletions": 100,
"url": "https://github.com/mui-org/material-ui/pull/14738"
},
{
"additions": 156,
"body": 16,
"createdAt": "2019-03-04T16:15:58Z",
"deletions": 136,
"url": "https://github.com/mui-org/material-ui/pull/14737"
},
{
"additions": 231,
"body": 372,
"createdAt": "2019-03-02T12:57:06Z",
"deletions": 217,
"url": "https://github.com/mui-org/material-ui/pull/14714"
},
{
"additions": 14,
"body": 115,
"createdAt": "2019-02-28T15:56:26Z",
"deletions": 20,
"url": "https://github.com/mui-org/material-ui/pull/14699"
},
{
"additions": 31,
"body": 1171,
"createdAt": "2019-02-28T12:43:15Z",
"deletions": 2,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/33463"
},
{
"additions": 64,
"body": 1019,
"createdAt": "2019-02-28T12:31:31Z",
"deletions": 2,
"url": "https://github.com/emotion-js/emotion/pull/1252"
},
{
"additions": 67,
"body": 553,
"createdAt": "2019-02-27T16:37:29Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/14688"
},
{
"additions": 26,
"body": 287,
"createdAt": "2019-02-27T09:23:41Z",
"deletions": 19,
"url": "https://github.com/gaearon/react-hot-loader/pull/1193"
},
{
"additions": 14,
"body": 719,
"createdAt": "2019-02-27T09:08:05Z",
"deletions": 2,
"url": "https://github.com/emotion-js/emotion/pull/1247"
},
{
"additions": 166,
"body": 1033,
"createdAt": "2019-02-26T21:02:50Z",
"deletions": 83,
"url": "https://github.com/mui-org/material-ui/pull/14682"
},
{
"additions": 12,
"body": 133,
"createdAt": "2019-02-26T15:13:46Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/14679"
},
{
"additions": 30,
"body": 129,
"createdAt": "2019-02-26T10:34:42Z",
"deletions": 19,
"url": "https://github.com/mui-org/material-ui/pull/14675"
},
{
"additions": 82,
"body": 279,
"createdAt": "2019-02-25T20:48:11Z",
"deletions": 79,
"url": "https://github.com/mui-org/material-ui/pull/14666"
},
{
"additions": 7,
"body": 447,
"createdAt": "2019-02-25T13:16:55Z",
"deletions": 7,
"url": "https://github.com/mui-org/material-ui/pull/14662"
},
{
"additions": 15,
"body": 421,
"createdAt": "2019-02-24T17:52:40Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/14652"
},
{
"additions": 32,
"body": 268,
"createdAt": "2019-02-23T19:39:36Z",
"deletions": 73,
"url": "https://github.com/mui-org/material-ui/pull/14643"
},
{
"additions": 104,
"body": 451,
"createdAt": "2019-02-23T13:18:12Z",
"deletions": 63,
"url": "https://github.com/mui-org/material-ui/pull/14636"
},
{
"additions": 27,
"body": 726,
"createdAt": "2019-02-23T10:21:14Z",
"deletions": 8,
"url": "https://github.com/mui-org/material-ui/pull/14635"
},
{
"additions": 113,
"body": 6496,
"createdAt": "2019-02-22T16:36:09Z",
"deletions": 128,
"url": "https://github.com/mui-org/material-ui/pull/14629"
},
{
"additions": 45,
"body": 294,
"createdAt": "2019-02-21T21:26:56Z",
"deletions": 21,
"url": "https://github.com/mui-org/material-ui/pull/14620"
},
{
"additions": 7,
"body": 539,
"createdAt": "2019-02-21T09:40:36Z",
"deletions": 3,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/33263"
},
{
"additions": 14,
"body": 1306,
"createdAt": "2019-02-20T22:37:44Z",
"deletions": 3,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/33244"
},
{
"additions": 133,
"body": 471,
"createdAt": "2019-02-20T20:43:09Z",
"deletions": 324,
"url": "https://github.com/mui-org/material-ui/pull/14602"
},
{
"additions": 4,
"body": 144,
"createdAt": "2019-02-20T20:27:20Z",
"deletions": 1,
"url": "https://github.com/reactjs/react-docgen/pull/330"
},
{
"additions": 1,
"body": 147,
"createdAt": "2019-02-20T17:12:12Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/14599"
},
{
"additions": 18,
"body": 276,
"createdAt": "2019-02-20T16:30:55Z",
"deletions": 27,
"url": "https://github.com/mui-org/material-ui/pull/14598"
},
{
"additions": 767,
"body": 7052,
"createdAt": "2019-02-19T23:20:33Z",
"deletions": 128,
"url": "https://github.com/mui-org/material-ui/pull/14587"
},
{
"additions": 585,
"body": 45,
"createdAt": "2019-02-19T17:48:54Z",
"deletions": 27,
"url": "https://github.com/eps1lon/material-ui/pull/4"
},
{
"additions": 24,
"body": 1488,
"createdAt": "2019-02-18T12:53:27Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/14572"
},
{
"additions": 11,
"body": 260,
"createdAt": "2019-02-18T10:58:48Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/14571"
},
{
"additions": 1408,
"body": 1890,
"createdAt": "2019-02-14T20:46:55Z",
"deletions": 1038,
"url": "https://github.com/mui-org/material-ui/pull/14536"
},
{
"additions": 504,
"body": 213,
"createdAt": "2019-02-14T17:01:13Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/14535"
},
{
"additions": 39,
"body": 1145,
"createdAt": "2019-02-14T11:29:38Z",
"deletions": 7,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/33061"
},
{
"additions": 3,
"body": 133,
"createdAt": "2019-02-13T20:56:20Z",
"deletions": 3,
"url": "https://github.com/styled-components/styled-components-website/pull/427"
},
{
"additions": 6,
"body": 1529,
"createdAt": "2019-02-13T19:52:52Z",
"deletions": 2,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/33044"
},
{
"additions": 3,
"body": 263,
"createdAt": "2019-02-12T19:17:31Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/14507"
},
{
"additions": 106,
"body": 283,
"createdAt": "2019-02-12T18:37:01Z",
"deletions": 98,
"url": "https://github.com/mui-org/material-ui/pull/14506"
},
{
"additions": 72,
"body": 17,
"createdAt": "2019-02-10T22:04:51Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/14485"
},
{
"additions": 64,
"body": 235,
"createdAt": "2019-02-10T15:20:46Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/14482"
},
{
"additions": 3,
"body": 278,
"createdAt": "2019-02-08T14:50:36Z",
"deletions": 8,
"url": "https://github.com/mui-org/material-ui/pull/14466"
},
{
"additions": 72,
"body": 2038,
"createdAt": "2019-02-08T14:06:19Z",
"deletions": 75,
"url": "https://github.com/mui-org/material-ui/pull/14465"
},
{
"additions": 44,
"body": 587,
"createdAt": "2019-02-08T10:01:56Z",
"deletions": 27,
"url": "https://github.com/mui-org/material-ui/pull/14461"
},
{
"additions": 7,
"body": 606,
"createdAt": "2019-02-07T19:43:22Z",
"deletions": 7,
"url": "https://github.com/mui-org/material-ui/pull/14457"
},
{
"additions": 3,
"body": 626,
"createdAt": "2019-02-06T10:37:07Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/14433"
},
{
"additions": 67,
"body": 487,
"createdAt": "2019-02-06T09:23:06Z",
"deletions": 24,
"url": "https://github.com/mui-org/material-ui/pull/14429"
},
{
"additions": 16,
"body": 175,
"createdAt": "2019-02-05T19:39:15Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/14423"
},
{
"additions": 1,
"body": 272,
"createdAt": "2019-02-05T18:18:19Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/14422"
},
{
"additions": 153,
"body": 1050,
"createdAt": "2019-02-04T08:53:55Z",
"deletions": 544,
"url": "https://github.com/mui-org/material-ui/pull/14406"
},
{
"additions": 10,
"body": 47,
"createdAt": "2019-02-03T16:42:53Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/14397"
},
{
"additions": 14,
"body": 476,
"createdAt": "2019-02-01T19:14:56Z",
"deletions": 14,
"url": "https://github.com/mui-org/material-ui/pull/14379"
},
{
"additions": 5,
"body": 250,
"createdAt": "2019-01-30T12:12:07Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/14351"
},
{
"additions": 68,
"body": 178,
"createdAt": "2019-01-30T11:48:26Z",
"deletions": 11,
"url": "https://github.com/mui-org/material-ui/pull/14350"
},
{
"additions": 13,
"body": 119,
"createdAt": "2019-01-29T14:22:33Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/14333"
},
{
"additions": 22,
"body": 206,
"createdAt": "2019-01-18T07:13:22Z",
"deletions": 24,
"url": "https://github.com/facebook/react/pull/14623"
},
{
"additions": 57,
"body": 249,
"createdAt": "2019-01-15T19:50:58Z",
"deletions": 57,
"url": "https://github.com/mui-org/material-ui/pull/14194"
},
{
"additions": 2,
"body": 168,
"createdAt": "2019-01-14T13:06:39Z",
"deletions": 4,
"url": "https://github.com/typescript-cheatsheets/react/pull/67"
},
{
"additions": 13,
"body": 78,
"createdAt": "2019-01-11T15:26:33Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/14151"
},
{
"additions": 64,
"body": 267,
"createdAt": "2019-01-11T10:33:56Z",
"deletions": 21,
"url": "https://github.com/mridgway/hoist-non-react-statics/pull/73"
},
{
"additions": 9,
"body": 0,
"createdAt": "2019-01-10T16:19:43Z",
"deletions": 10,
"url": "https://github.com/mui-org/material-ui/pull/14142"
},
{
"additions": 11,
"body": 115,
"createdAt": "2019-01-10T12:17:07Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/14139"
},
{
"additions": 4,
"body": 94,
"createdAt": "2019-01-10T08:34:57Z",
"deletions": 0,
"url": "https://github.com/reactjs/reactjs.org/pull/1543"
},
{
"additions": 50,
"body": 676,
"createdAt": "2019-01-09T11:40:33Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/14127"
},
{
"additions": 37,
"body": 1255,
"createdAt": "2019-01-08T13:28:36Z",
"deletions": 5,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/31968"
},
{
"additions": 44,
"body": 369,
"createdAt": "2019-01-08T11:31:28Z",
"deletions": 11,
"url": "https://github.com/mui-org/material-ui/pull/14117"
},
{
"additions": 1554,
"body": 0,
"createdAt": "2019-01-07T16:00:28Z",
"deletions": 1156,
"url": "https://github.com/eps1lon/poe-recraft/pull/7"
},
{
"additions": 2,
"body": 25,
"createdAt": "2019-01-03T17:29:31Z",
"deletions": 19,
"url": "https://github.com/eps1lon/poe-react-item/pull/8"
},
{
"additions": 2,
"body": 25,
"createdAt": "2019-01-03T17:28:08Z",
"deletions": 37,
"url": "https://github.com/eps1lon/poe-i18n/pull/77"
},
{
"additions": 2,
"body": 25,
"createdAt": "2019-01-03T17:26:16Z",
"deletions": 72,
"url": "https://github.com/eps1lon/poe-mods/pull/95"
},
{
"additions": 3343805,
"body": 81,
"createdAt": "2019-01-03T17:23:02Z",
"deletions": 420763,
"url": "https://github.com/eps1lon/poe-recraft/pull/6"
},
{
"additions": 24,
"body": 0,
"createdAt": "2019-01-03T15:44:38Z",
"deletions": 0,
"url": "https://github.com/eps1lon/poe-i18n/pull/76"
},
{
"additions": 64,
"body": 11,
"createdAt": "2019-01-03T12:13:33Z",
"deletions": 58036,
"url": "https://github.com/eps1lon/poe-mods/pull/94"
},
{
"additions": 8,
"body": 450,
"createdAt": "2019-01-02T15:37:54Z",
"deletions": 1,
"url": "https://github.com/OmegaK2/PyPoE/pull/82"
},
{
"additions": 338320,
"body": 194,
"createdAt": "2019-01-02T07:24:43Z",
"deletions": 207191,
"url": "https://github.com/eps1lon/poe-i18n/pull/75"
},
{
"additions": 7,
"body": 11,
"createdAt": "2019-01-02T05:36:31Z",
"deletions": 7,
"url": "https://github.com/eps1lon/poe-i18n/pull/73"
},
{
"additions": 163,
"body": 11,
"createdAt": "2019-01-02T05:26:17Z",
"deletions": 69,
"url": "https://github.com/eps1lon/poe-i18n/pull/72"
},
{
"additions": 201315,
"body": 26,
"createdAt": "2018-12-30T14:21:51Z",
"deletions": 40068,
"url": "https://github.com/eps1lon/poe-mods/pull/93"
},
{
"additions": 184497,
"body": 0,
"createdAt": "2018-12-30T09:40:04Z",
"deletions": 91425,
"url": "https://github.com/eps1lon/poe-db/pull/17"
},
{
"additions": 23021,
"body": 0,
"createdAt": "2018-12-30T09:34:54Z",
"deletions": 2801,
"url": "https://github.com/eps1lon/poe-db/pull/16"
},
{
"additions": 98,
"body": 221,
"createdAt": "2018-12-28T16:28:47Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/14019"
},
{
"additions": 1,
"body": 156,
"createdAt": "2018-12-19T12:25:47Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/13954"
},
{
"additions": 52,
"body": 1130,
"createdAt": "2018-12-07T11:37:48Z",
"deletions": 10,
"url": "https://github.com/babel/babel/pull/9144"
},
{
"additions": 13,
"body": 820,
"createdAt": "2018-12-05T14:34:14Z",
"deletions": 15,
"url": "https://github.com/mui-org/material-ui/pull/13818"
},
{
"additions": 1,
"body": 1015,
"createdAt": "2018-12-05T13:44:43Z",
"deletions": 0,
"url": "https://github.com/storybookjs/storybook/pull/4928"
},
{
"additions": 253,
"body": 490,
"createdAt": "2018-12-05T12:23:16Z",
"deletions": 72,
"url": "https://github.com/mui-org/material-ui/pull/13816"
},
{
"additions": 48,
"body": 378,
"createdAt": "2018-12-05T11:45:32Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/13815"
},
{
"additions": 52,
"body": 163,
"createdAt": "2018-12-04T12:07:06Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/13797"
},
{
"additions": 36,
"body": 456,
"createdAt": "2018-12-02T19:45:08Z",
"deletions": 1,
"url": "https://github.com/mridgway/hoist-non-react-statics/pull/71"
},
{
"additions": 5,
"body": 243,
"createdAt": "2018-12-01T16:08:46Z",
"deletions": 42,
"url": "https://github.com/mui-org/material-ui/pull/13766"
},
{
"additions": 15,
"body": 88,
"createdAt": "2018-12-01T13:03:09Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/13764"
},
{
"additions": 14,
"body": 239,
"createdAt": "2018-11-30T18:42:26Z",
"deletions": 10,
"url": "https://github.com/mui-org/material-ui/pull/13755"
},
{
"additions": 12,
"body": 37,
"createdAt": "2018-11-30T17:58:28Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/13754"
},
{
"additions": 4,
"body": 300,
"createdAt": "2018-11-30T10:48:27Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/13750"
},
{
"additions": 3,
"body": 355,
"createdAt": "2018-11-29T13:59:24Z",
"deletions": 3,
"url": "https://github.com/final-form/react-final-form/pull/389"
},
{
"additions": 100,
"body": 1276,
"createdAt": "2018-11-28T13:26:43Z",
"deletions": 17,
"url": "https://github.com/mui-org/material-ui/pull/13722"
},
{
"additions": 14,
"body": 563,
"createdAt": "2018-11-28T12:39:00Z",
"deletions": 12,
"url": "https://github.com/cssinjs/jss/pull/925"
},
{
"additions": 13,
"body": 244,
"createdAt": "2018-11-28T11:37:48Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/13721"
},
{
"additions": 11,
"body": 88,
"createdAt": "2018-11-27T09:48:30Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/13700"
},
{
"additions": 22,
"body": 63,
"createdAt": "2018-11-27T08:45:13Z",
"deletions": 2,
"url": "https://github.com/mridgway/hoist-non-react-statics/pull/70"
},
{
"additions": 63,
"body": 2990,
"createdAt": "2018-11-26T21:15:19Z",
"deletions": 6,
"url": "https://github.com/mui-org/material-ui/pull/13698"
},
{
"additions": 99,
"body": 635,
"createdAt": "2018-11-26T17:00:44Z",
"deletions": 5,
"url": "https://github.com/reactjs/react-docgen/pull/311"
},
{
"additions": 1,
"body": 212,
"createdAt": "2018-11-24T17:56:11Z",
"deletions": 0,
"url": "https://github.com/mridgway/hoist-non-react-statics/pull/68"
},
{
"additions": 14,
"body": 437,
"createdAt": "2018-11-24T10:00:47Z",
"deletions": 4,
"url": "https://github.com/remix-run/react-router/pull/6487"
},
{
"additions": 181,
"body": 1727,
"createdAt": "2018-11-23T09:45:09Z",
"deletions": 78,
"url": "https://github.com/mui-org/material-ui/pull/13676"
},
{
"additions": 108,
"body": 80,
"createdAt": "2018-11-21T15:30:33Z",
"deletions": 53,
"url": "https://github.com/mui-org/material-ui/pull/13664"
},
{
"additions": 1,
"body": 188,
"createdAt": "2018-11-20T17:29:58Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/13654"
},
{
"additions": 9,
"body": 18046,
"createdAt": "2018-11-19T22:53:33Z",
"deletions": 5,
"url": "https://github.com/mui-org/material-ui/pull/13642"
},
{
"additions": 10,
"body": 274,
"createdAt": "2018-11-19T15:05:23Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/13638"
},
{
"additions": 878,
"body": 334,
"createdAt": "2018-11-16T10:56:25Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/13612"
},
{
"additions": 14,
"body": 283,
"createdAt": "2018-11-15T14:58:43Z",
"deletions": 19,
"url": "https://github.com/mui-org/material-ui/pull/13607"
},
{
"additions": 15,
"body": 706,
"createdAt": "2018-11-15T11:11:10Z",
"deletions": 16,
"url": "https://github.com/mui-org/material-ui/pull/13604"
},
{
"additions": 611,
"body": 428,
"createdAt": "2018-11-13T19:10:11Z",
"deletions": 465,
"url": "https://github.com/mui-org/material-ui/pull/13590"
},
{
"additions": 477,
"body": 112,
"createdAt": "2018-11-06T16:17:03Z",
"deletions": 306,
"url": "https://github.com/mui-org/material-ui/pull/13529"
},
{
"additions": 177,
"body": 990,
"createdAt": "2018-11-05T11:30:14Z",
"deletions": 124,
"url": "https://github.com/mui-org/material-ui/pull/13517"
},
{
"additions": 445,
"body": 135,
"createdAt": "2018-11-03T12:13:43Z",
"deletions": 380,
"url": "https://github.com/mui-org/material-ui/pull/13498"
},
{
"additions": 49,
"body": 1393,
"createdAt": "2018-11-01T21:30:48Z",
"deletions": 38,
"url": "https://github.com/mui-org/material-ui/pull/13487"
},
{
"additions": 12,
"body": 1285,
"createdAt": "2018-10-31T21:16:43Z",
"deletions": 8,
"url": "https://github.com/react-static/react-static/pull/847"
},
{
"additions": 331,
"body": 56,
"createdAt": "2018-10-31T20:31:33Z",
"deletions": 260,
"url": "https://github.com/mui-org/material-ui/pull/13477"
},
{
"additions": 579,
"body": 767,
"createdAt": "2018-10-30T16:44:54Z",
"deletions": 207,
"url": "https://github.com/mui-org/material-ui/pull/13453"
},
{
"additions": 4,
"body": 43,
"createdAt": "2018-10-30T11:04:38Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/13445"
},
{
"additions": 0,
"body": 113,
"createdAt": "2018-10-29T15:16:25Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/13437"
},
{
"additions": 1,
"body": 51,
"createdAt": "2018-10-26T15:46:31Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/13400"
},
{
"additions": 160,
"body": 861,
"createdAt": "2018-10-26T00:39:10Z",
"deletions": 94,
"url": "https://github.com/mui-org/material-ui/pull/13391"
},
{
"additions": 19,
"body": 522,
"createdAt": "2018-10-24T20:56:19Z",
"deletions": 16,
"url": "https://github.com/mui-org/material-ui/pull/13379"
},
{
"additions": 11,
"body": 9294,
"createdAt": "2018-10-21T10:50:07Z",
"deletions": 5,
"url": "https://github.com/mui-org/material-ui/pull/13324"
},
{
"additions": 5,
"body": 141,
"createdAt": "2018-10-17T14:00:20Z",
"deletions": 5,
"url": "https://github.com/mui-org/material-ui/pull/13280"
},
{
"additions": 48,
"body": 1757,
"createdAt": "2018-10-15T16:32:16Z",
"deletions": 34,
"url": "https://github.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/pull/168"
},
{
"additions": 1,
"body": 278,
"createdAt": "2018-10-15T14:45:00Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/13252"
},
{
"additions": 138,
"body": 605,
"createdAt": "2018-10-15T07:48:20Z",
"deletions": 21,
"url": "https://github.com/oliviertassinari/babel-plugin-transform-react-remove-prop-types/pull/167"
},
{
"additions": 3506,
"body": 3821,
"createdAt": "2018-10-13T14:21:37Z",
"deletions": 232,
"url": "https://github.com/mui-org/material-ui/pull/13229"
},
{
"additions": 25,
"body": 250,
"createdAt": "2018-10-13T08:04:09Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/13225"
},
{
"additions": 3,
"body": 333,
"createdAt": "2018-10-11T07:22:05Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/13200"
},
{
"additions": 1,
"body": 105,
"createdAt": "2018-10-10T15:28:16Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/13187"
},
{
"additions": 2,
"body": 79,
"createdAt": "2018-10-09T16:12:27Z",
"deletions": 8,
"url": "https://github.com/mui-org/material-ui/pull/13172"
},
{
"additions": 13,
"body": 118,
"createdAt": "2018-10-08T20:46:00Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/13161"
},
{
"additions": 2,
"body": 37,
"createdAt": "2018-10-08T13:24:57Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/13153"
},
{
"additions": 3,
"body": 249,
"createdAt": "2018-10-08T11:53:29Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/13151"
},
{
"additions": 9,
"body": 136,
"createdAt": "2018-10-08T09:13:05Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/13148"
},
{
"additions": 103,
"body": 164,
"createdAt": "2018-10-07T22:01:06Z",
"deletions": 3,
"url": "https://github.com/mui-org/material-ui/pull/13140"
},
{
"additions": 2,
"body": 79,
"createdAt": "2018-10-07T21:14:58Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/13139"
},
{
"additions": 22,
"body": 391,
"createdAt": "2018-10-05T19:56:10Z",
"deletions": 8,
"url": "https://github.com/mui-org/material-ui/pull/13113"
},
{
"additions": 69,
"body": 173,
"createdAt": "2018-10-05T19:49:39Z",
"deletions": 66,
"url": "https://github.com/mui-org/material-ui/pull/13112"
},
{
"additions": 1,
"body": 0,
"createdAt": "2018-10-04T14:55:58Z",
"deletions": 1,
"url": "https://github.com/jquense/react-big-calendar/pull/1032"
},
{
"additions": 26,
"body": 468,
"createdAt": "2018-10-03T14:12:24Z",
"deletions": 21,
"url": "https://github.com/mui-org/material-ui/pull/13090"
},
{
"additions": 1,
"body": 349,
"createdAt": "2018-10-03T10:06:58Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/13084"
},
{
"additions": 60,
"body": 322,
"createdAt": "2018-10-01T16:09:00Z",
"deletions": 5,
"url": "https://github.com/mui-org/material-ui/pull/13060"
},
{
"additions": 1687,
"body": 81,
"createdAt": "2018-10-01T10:44:12Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/13055"
},
{
"additions": 143,
"body": 1256,
"createdAt": "2018-09-30T07:13:28Z",
"deletions": 86,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/29293"
},
{
"additions": 123,
"body": 932,
"createdAt": "2018-09-27T09:54:22Z",
"deletions": 43,
"url": "https://github.com/mui-org/material-ui/pull/13018"
},
{
"additions": 1,
"body": 116,
"createdAt": "2018-09-24T18:43:06Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/12992"
},
{
"additions": 13,
"body": 994,
"createdAt": "2018-09-23T11:39:32Z",
"deletions": 93,
"url": "https://github.com/mui-org/material-ui/pull/12972"
},
{
"additions": 51,
"body": 501,
"createdAt": "2018-09-22T22:21:11Z",
"deletions": 17,
"url": "https://github.com/mui-org/material-ui/pull/12967"
},
{
"additions": 24,
"body": 18,
"createdAt": "2018-09-19T17:17:53Z",
"deletions": 20,
"url": "https://github.com/eps1lon/poe-mods/pull/90"
},
{
"additions": 963,
"body": 1568,
"createdAt": "2018-09-18T11:36:42Z",
"deletions": 373,
"url": "https://github.com/mui-org/material-ui/pull/12916"
},
{
"additions": 5,
"body": 173,
"createdAt": "2018-09-18T08:39:59Z",
"deletions": 12,
"url": "https://github.com/mui-org/material-ui/pull/12912"
},
{
"additions": 2,
"body": 128,
"createdAt": "2018-09-18T07:03:58Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/12911"
},
{
"additions": 286,
"body": 1301,
"createdAt": "2018-09-17T23:29:44Z",
"deletions": 0,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/28963"
},
{
"additions": 0,
"body": 131,
"createdAt": "2018-09-17T19:37:17Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/12903"
},
{
"additions": 64,
"body": 113,
"createdAt": "2018-09-17T19:16:19Z",
"deletions": 30,
"url": "https://github.com/mui-org/material-ui/pull/12901"
},
{
"additions": 1801,
"body": 0,
"createdAt": "2018-09-17T15:00:56Z",
"deletions": 436,
"url": "https://github.com/eps1lon/poe-db/pull/15"
},
{
"additions": 5,
"body": 645,
"createdAt": "2018-09-17T12:47:40Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/12895"
},
{
"additions": 5,
"body": 131,
"createdAt": "2018-09-13T14:54:48Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/12864"
},
{
"additions": 18,
"body": 134,
"createdAt": "2018-09-07T15:23:47Z",
"deletions": 62,
"url": "https://github.com/mui-org/material-ui/pull/12803"
},
{
"additions": 1,
"body": 321,
"createdAt": "2018-09-07T14:07:02Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/12802"
},
{
"additions": 37,
"body": 737,
"createdAt": "2018-09-03T10:07:47Z",
"deletions": 21,
"url": "https://github.com/mui-org/material-ui/pull/12763"
},
{
"additions": 357,
"body": 1062,
"createdAt": "2018-08-30T21:04:46Z",
"deletions": 96,
"url": "https://github.com/mui-org/material-ui/pull/12725"
},
{
"additions": 75,
"body": 143,
"createdAt": "2018-08-30T18:32:02Z",
"deletions": 0,
"url": "https://github.com/mui-org/material-ui/pull/12724"
},
{
"additions": 5,
"body": 835,
"createdAt": "2018-08-30T16:23:19Z",
"deletions": 5,
"url": "https://github.com/mui-org/material-ui/pull/12719"
},
{
"additions": 1,
"body": 182,
"createdAt": "2018-08-30T15:07:03Z",
"deletions": 1,
"url": "https://github.com/timoxley/keycode/pull/47"
},
{
"additions": 1,
"body": 329,
"createdAt": "2018-08-30T06:20:46Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/12713"
},
{
"additions": 25,
"body": 44,
"createdAt": "2018-08-29T08:21:51Z",
"deletions": 6,
"url": "https://github.com/eps1lon/TreeStats/pull/10"
},
{
"additions": 114,
"body": 709,
"createdAt": "2018-08-27T14:17:13Z",
"deletions": 37,
"url": "https://github.com/mui-org/material-ui/pull/12673"
},
{
"additions": 2,
"body": 68,
"createdAt": "2018-08-27T13:38:35Z",
"deletions": 2,
"url": "https://github.com/prettier/tslint-config-prettier/pull/184"
},
{
"additions": 217,
"body": 1871,
"createdAt": "2018-08-24T07:56:23Z",
"deletions": 175,
"url": "https://github.com/mui-org/material-ui/pull/12637"
},
{
"additions": 19,
"body": 298,
"createdAt": "2018-08-23T08:59:02Z",
"deletions": 11,
"url": "https://github.com/mui-org/material-ui/pull/12629"
},
{
"additions": 163,
"body": 1157,
"createdAt": "2018-08-23T08:18:59Z",
"deletions": 0,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/28319"
},
{
"additions": 4,
"body": 1138,
"createdAt": "2018-08-23T06:37:38Z",
"deletions": 1,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/28315"
},
{
"additions": 1,
"body": 502,
"createdAt": "2018-08-22T20:17:58Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/12627"
},
{
"additions": 3,
"body": 55,
"createdAt": "2018-08-21T16:17:11Z",
"deletions": 3,
"url": "https://github.com/cssinjs/theming/pull/53"
},
{
"additions": 2,
"body": 606,
"createdAt": "2018-08-20T19:04:24Z",
"deletions": 1,
"url": "https://github.com/cssinjs/jss/pull/827"
},
{
"additions": 11,
"body": 232,
"createdAt": "2018-08-20T15:49:25Z",
"deletions": 8,
"url": "https://github.com/mui-org/material-ui/pull/12593"
},
{
"additions": 13,
"body": 262,
"createdAt": "2018-08-20T15:01:58Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/12591"
},
{
"additions": 20,
"body": 680,
"createdAt": "2018-08-18T16:37:48Z",
"deletions": 10,
"url": "https://github.com/mui-org/material-ui/pull/12579"
},
{
"additions": 55,
"body": 4121,
"createdAt": "2018-08-17T15:28:37Z",
"deletions": 45,
"url": "https://github.com/mui-org/material-ui/pull/12564"
},
{
"additions": 10,
"body": 791,
"createdAt": "2018-08-17T05:57:36Z",
"deletions": 2,
"url": "https://github.com/mui-org/material-ui/pull/12560"
},
{
"additions": 25,
"body": 1160,
"createdAt": "2018-08-16T08:41:30Z",
"deletions": 19,
"url": "https://github.com/mui-org/material-ui/pull/12549"
},
{
"additions": 43,
"body": 391,
"createdAt": "2018-08-15T11:35:52Z",
"deletions": 23,
"url": "https://github.com/mui-org/material-ui/pull/12537"
},
{
"additions": 5,
"body": 370,
"createdAt": "2018-08-15T10:24:17Z",
"deletions": 4,
"url": "https://github.com/mui-org/material-ui/pull/12535"
},
{
"additions": 1,
"body": 152,
"createdAt": "2018-08-15T09:22:41Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/12533"
},
{
"additions": 8,
"body": 550,
"createdAt": "2018-08-15T08:40:09Z",
"deletions": 5,
"url": "https://github.com/mui-org/material-ui/pull/12531"
},
{
"additions": 23,
"body": 10,
"createdAt": "2018-08-14T08:59:52Z",
"deletions": 282,
"url": "https://github.com/eps1lon/poe-mods/pull/87"
},
{
"additions": 8,
"body": 46,
"createdAt": "2018-08-14T08:30:50Z",
"deletions": 8,
"url": "https://github.com/eps1lon/poe-mods/pull/86"
},
{
"additions": 25,
"body": 51,
"createdAt": "2018-08-14T08:10:52Z",
"deletions": 20,
"url": "https://github.com/eps1lon/poe-mods/pull/85"
},
{
"additions": 1,
"body": 448,
"createdAt": "2018-08-09T14:39:23Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/12456"
},
{
"additions": 1,
"body": 0,
"createdAt": "2018-08-06T08:45:04Z",
"deletions": 0,
"url": "https://github.com/microsoft/vscode-docs/pull/1766"
},
{
"additions": 1,
"body": 753,
"createdAt": "2018-08-03T08:25:50Z",
"deletions": 1,
"url": "https://github.com/palantir/tslint/pull/4095"
},
{
"additions": 29,
"body": 965,
"createdAt": "2018-08-02T18:44:11Z",
"deletions": 11,
"url": "https://github.com/microsoft/dtslint/pull/130"
},
{
"additions": 12,
"body": 1239,
"createdAt": "2018-07-29T07:31:44Z",
"deletions": 0,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/27655"
},
{
"additions": 2,
"body": 12,
"createdAt": "2018-07-25T14:26:42Z",
"deletions": 2,
"url": "https://github.com/jquense/react-big-calendar/pull/919"
},
{
"additions": 7,
"body": 691,
"createdAt": "2018-07-23T08:40:07Z",
"deletions": 16,
"url": "https://github.com/mui-org/material-ui/pull/12245"
},
{
"additions": 1,
"body": 497,
"createdAt": "2018-07-22T21:24:40Z",
"deletions": 19,
"url": "https://github.com/mui-org/material-ui/pull/12242"
},
{
"additions": 17,
"body": 198,
"createdAt": "2018-07-17T21:27:55Z",
"deletions": 1,
"url": "https://github.com/mui-org/material-ui/pull/12173"
},
{
"additions": 14,
"body": 1433,
"createdAt": "2018-07-09T07:15:46Z",
"deletions": 1,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/27145"
},
{
"additions": 2,
"body": 1335,
"createdAt": "2018-07-03T14:32:57Z",
"deletions": 1,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/27017"
},
{
"additions": 18,
"body": 1624,
"createdAt": "2018-06-27T06:48:25Z",
"deletions": 15,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/26872"
},
{
"additions": 1185,
"body": 124,
"createdAt": "2018-06-19T10:20:42Z",
"deletions": 14,
"url": "https://github.com/eps1lon/poe-mods/pull/83"
},
{
"additions": 272,
"body": 409,
"createdAt": "2018-06-17T10:37:47Z",
"deletions": 145,
"url": "https://github.com/eps1lon/poe-i18n/pull/61"
},
{
"additions": 11,
"body": 228,
"createdAt": "2018-06-16T13:12:38Z",
"deletions": 4,
"url": "https://github.com/eps1lon/poe-i18n/pull/60"
},
{
"additions": 41,
"body": 96,
"createdAt": "2018-06-15T08:17:15Z",
"deletions": 43,
"url": "https://github.com/eps1lon/poe-i18n/pull/59"
},
{
"additions": 649,
"body": 67,
"createdAt": "2018-06-14T21:33:41Z",
"deletions": 0,
"url": "https://github.com/eps1lon/poe-i18n/pull/57"
},
{
"additions": 1315,
"body": 72,
"createdAt": "2018-06-12T05:58:32Z",
"deletions": 10422,
"url": "https://github.com/eps1lon/poe-mods/pull/81"
},
{
"additions": 1723,
"body": 137,
"createdAt": "2018-06-12T05:11:24Z",
"deletions": 2897,
"url": "https://github.com/eps1lon/poe-mods/pull/80"
},
{
"additions": 1892,
"body": 0,
"createdAt": "2018-06-10T17:20:31Z",
"deletions": 295,
"url": "https://github.com/eps1lon/poe-mods/pull/79"
},
{
"additions": 3186,
"body": 20,
"createdAt": "2018-06-10T11:19:41Z",
"deletions": 788,
"url": "https://github.com/eps1lon/poe-db/pull/14"
},
{
"additions": 2,
"body": 103,
"createdAt": "2018-06-10T10:45:08Z",
"deletions": 2,
"url": "https://github.com/OmegaK2/PyPoE/pull/62"
},
{
"additions": 318,
"body": 144,
"createdAt": "2018-06-10T07:56:04Z",
"deletions": 1,
"url": "https://github.com/eps1lon/poe-mods/pull/77"
},
{
"additions": 3823,
"body": 327,
"createdAt": "2018-06-09T14:26:42Z",
"deletions": 3201,
"url": "https://github.com/eps1lon/poe-mods/pull/76"
},
{
"additions": 889,
"body": 296,
"createdAt": "2018-06-08T19:48:43Z",
"deletions": 155,
"url": "https://github.com/eps1lon/poe-mods/pull/74"
},
{
"additions": 29,
"body": 0,
"createdAt": "2018-06-08T09:36:25Z",
"deletions": 13,
"url": "https://github.com/eps1lon/poe-db/pull/13"
},
{
"additions": 28945,
"body": 246,
"createdAt": "2018-06-08T08:18:50Z",
"deletions": 72281,
"url": "https://github.com/eps1lon/poe-mods/pull/72"
},
{
"additions": 381,
"body": 11,
"createdAt": "2018-06-07T19:37:49Z",
"deletions": 5,
"url": "https://github.com/eps1lon/poe-i18n/pull/56"
},
{
"additions": 60,
"body": 10,
"createdAt": "2018-06-07T17:03:35Z",
"deletions": 1593,
"url": "https://github.com/eps1lon/poe-i18n/pull/55"
},
{
"additions": 3,
"body": 177,
"createdAt": "2018-06-07T16:27:28Z",
"deletions": 0,
"url": "https://github.com/eps1lon/poe-i18n/pull/54"
},
{
"additions": 2873,
"body": 559,
"createdAt": "2018-06-05T15:13:36Z",
"deletions": 3,
"url": "https://github.com/eps1lon/poe-mods/pull/69"
},
{
"additions": 8481,
"body": 178,
"createdAt": "2018-06-01T19:28:22Z",
"deletions": 2043,
"url": "https://github.com/eps1lon/poe-db/pull/12"
},
{
"additions": 81945,
"body": 0,
"createdAt": "2018-06-01T17:05:27Z",
"deletions": 23098,
"url": "https://github.com/eps1lon/poe-i18n/pull/51"
},
{
"additions": 129323,
"body": 43,
"createdAt": "2018-06-01T07:23:56Z",
"deletions": 102690,
"url": "https://github.com/eps1lon/poe-mods/pull/67"
},
{
"additions": 8476,
"body": 57,
"createdAt": "2018-06-01T07:23:09Z",
"deletions": 2040,
"url": "https://github.com/eps1lon/poe-db/pull/11"
},
{
"additions": 1827,
"body": 178,
"createdAt": "2018-05-31T18:03:54Z",
"deletions": 1417,
"url": "https://github.com/eps1lon/poe-db/pull/10"
},
{
"additions": 11,
"body": 0,
"createdAt": "2018-05-31T16:46:20Z",
"deletions": 0,
"url": "https://github.com/eps1lon/poe-db/pull/9"
},
{
"additions": 186,
"body": 257,
"createdAt": "2018-05-31T16:34:24Z",
"deletions": 10,
"url": "https://github.com/eps1lon/poe-db/pull/8"
},
{
"additions": 8,
"body": 1175,
"createdAt": "2018-05-31T07:12:24Z",
"deletions": 1,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/26165"
},
{
"additions": 266,
"body": 0,
"createdAt": "2018-05-30T15:55:02Z",
"deletions": 131,
"url": "https://github.com/eps1lon/poe-mods/pull/65"
},
{
"additions": 6,
"body": 79,
"createdAt": "2018-05-30T15:30:54Z",
"deletions": 2,
"url": "https://github.com/eps1lon/poe-mods/pull/64"
},
{
"additions": 284053,
"body": 40,
"createdAt": "2018-05-30T15:07:54Z",
"deletions": 123015,
"url": "https://github.com/eps1lon/poe-mods/pull/62"
},
{
"additions": 1557,
"body": 20,
"createdAt": "2018-05-30T09:31:18Z",
"deletions": 1381,
"url": "https://github.com/eps1lon/poe-db/pull/7"
},
{
"additions": 7,
"body": 149,
"createdAt": "2018-05-30T06:20:53Z",
"deletions": 4,
"url": "https://github.com/eps1lon/poe-i18n/pull/50"
},
{
"additions": 2865,
"body": 304,
"createdAt": "2018-05-30T05:46:55Z",
"deletions": 6024,
"url": "https://github.com/eps1lon/poe-i18n/pull/49"
},
{
"additions": 177359,
"body": 44,
"createdAt": "2018-05-29T12:25:38Z",
"deletions": 105827,
"url": "https://github.com/eps1lon/poe-i18n/pull/48"
},
{
"additions": 6,
"body": 98,
"createdAt": "2018-05-29T12:10:32Z",
"deletions": 0,
"url": "https://github.com/OmegaK2/PyPoE/pull/59"
},
{
"additions": 285,
"body": 259,
"createdAt": "2018-05-18T07:47:41Z",
"deletions": 189,
"url": "https://github.com/eps1lon/poe-i18n/pull/46"
},
{
"additions": 10,
"body": 203,
"createdAt": "2018-05-18T06:27:31Z",
"deletions": 5,
"url": "https://github.com/eps1lon/poe-i18n/pull/45"
},
{
"additions": 3718,
"body": 193,
"createdAt": "2018-05-03T09:50:02Z",
"deletions": 6346,
"url": "https://github.com/eps1lon/poe-mods/pull/61"
},
{
"additions": 15,
"body": 43,
"createdAt": "2018-05-03T09:14:27Z",
"deletions": 1,
"url": "https://github.com/eps1lon/poe-mods/pull/60"
},
{
"additions": 1,
"body": 11,
"createdAt": "2018-04-27T21:36:36Z",
"deletions": 1,
"url": "https://github.com/eps1lon/poe-mods/pull/55"
},
{
"additions": 3541,
"body": 52,
"createdAt": "2018-04-25T13:53:42Z",
"deletions": 5010,
"url": "https://github.com/eps1lon/poe-i18n/pull/40"
},
{
"additions": 2848,
"body": 63,
"createdAt": "2018-04-25T10:01:49Z",
"deletions": 2503,
"url": "https://github.com/eps1lon/poe-mods/pull/53"
},
{
"additions": 201,
"body": 43,
"createdAt": "2018-04-24T15:29:41Z",
"deletions": 34,
"url": "https://github.com/eps1lon/poe-mods/pull/52"
},
{
"additions": 19,
"body": 11,
"createdAt": "2018-04-21T14:54:11Z",
"deletions": 5,
"url": "https://github.com/eps1lon/poe-mods/pull/51"
},
{
"additions": 2292,
"body": 10,
"createdAt": "2018-04-21T14:06:33Z",
"deletions": 2259,
"url": "https://github.com/eps1lon/poe-mods/pull/50"
},
{
"additions": 8247,
"body": 699,
"createdAt": "2018-04-10T09:18:06Z",
"deletions": 2071,
"url": "https://github.com/eps1lon/poe-mods/pull/47"
},
{
"additions": 6813,
"body": 11,
"createdAt": "2018-04-06T12:44:29Z",
"deletions": 2670,
"url": "https://github.com/eps1lon/poe-mods/pull/46"
},
{
"additions": 8653,
"body": 152,
"createdAt": "2018-04-02T15:33:39Z",
"deletions": 2762,
"url": "https://github.com/eps1lon/poe-mods/pull/45"
},
{
"additions": 73664,
"body": 115,
"createdAt": "2018-03-25T16:18:34Z",
"deletions": 346,
"url": "https://github.com/eps1lon/poe-mods/pull/43"
},
{
"additions": 21679,
"body": 0,
"createdAt": "2018-03-21T13:21:51Z",
"deletions": 3410,
"url": "https://github.com/eps1lon/poe-db/pull/6"
},
{
"additions": 1189,
"body": 0,
"createdAt": "2018-03-21T13:12:29Z",
"deletions": 322,
"url": "https://github.com/eps1lon/poe-db/pull/5"
},
{
"additions": 38,
"body": 1558,
"createdAt": "2018-03-21T12:20:00Z",
"deletions": 39,
"url": "https://github.com/OmegaK2/PyPoE/pull/54"
},
{
"additions": 75,
"body": 328,
"createdAt": "2018-03-20T15:56:40Z",
"deletions": 74,
"url": "https://github.com/eps1lon/poe-i18n/pull/39"
},
{
"additions": 225,
"body": 289,
"createdAt": "2018-03-12T13:58:13Z",
"deletions": 0,
"url": "https://github.com/Chuanhsing/poe-api/pull/1"
},
{
"additions": 8,
"body": 10,
"createdAt": "2018-03-11T09:38:30Z",
"deletions": 2,
"url": "https://github.com/eps1lon/poe-mods/pull/42"
},
{
"additions": 36,
"body": 115,
"createdAt": "2018-03-10T20:23:44Z",
"deletions": 4,
"url": "https://github.com/eps1lon/poe-i18n/pull/37"
},
{
"additions": 63,
"body": 98,
"createdAt": "2018-03-10T19:08:31Z",
"deletions": 103,
"url": "https://github.com/eps1lon/poe-i18n/pull/36"
},
{
"additions": 51,
"body": 9,
"createdAt": "2018-03-10T18:09:44Z",
"deletions": 28,
"url": "https://github.com/eps1lon/poe-i18n/pull/35"
},
{
"additions": 1129,
"body": 178,
"createdAt": "2018-03-10T11:37:27Z",
"deletions": 152,
"url": "https://github.com/eps1lon/poe-i18n/pull/31"
},
{
"additions": 3,
"body": 95,
"createdAt": "2018-03-05T21:36:45Z",
"deletions": 2,
"url": "https://github.com/marcelowa/promise-all-properties/pull/3"
},
{
"additions": 752,
"body": 168,
"createdAt": "2018-03-05T21:03:58Z",
"deletions": 102,
"url": "https://github.com/eps1lon/poe-i18n/pull/30"
},
{
"additions": 87,
"body": 44,
"createdAt": "2018-03-05T16:14:22Z",
"deletions": 20,
"url": "https://github.com/eps1lon/poe-i18n/pull/29"
},
{
"additions": 98976,
"body": 229,
"createdAt": "2018-03-04T20:02:01Z",
"deletions": 71176,
"url": "https://github.com/eps1lon/poe-i18n/pull/28"
},
{
"additions": 21,
"body": 848,
"createdAt": "2018-03-04T14:38:44Z",
"deletions": 2,
"url": "https://github.com/facebook/jest/pull/5719"
},
{
"additions": 28309,
"body": 0,
"createdAt": "2018-03-03T13:47:41Z",
"deletions": 16648,
"url": "https://github.com/eps1lon/poe-mods/pull/39"
},
{
"additions": 13210,
"body": 0,
"createdAt": "2018-03-03T13:11:53Z",
"deletions": 2609,
"url": "https://github.com/eps1lon/poe-db/pull/4"
},
{
"additions": 9,
"body": 312,
"createdAt": "2018-03-03T09:07:51Z",
"deletions": 3,
"url": "https://github.com/OmegaK2/PyPoE/pull/51"
},
{
"additions": 3,
"body": 65,
"createdAt": "2018-03-03T07:57:06Z",
"deletions": 3,
"url": "https://github.com/OmegaK2/PyPoE/pull/50"
},
{
"additions": 11420,
"body": 102,
"createdAt": "2018-03-02T12:39:40Z",
"deletions": 6552,
"url": "https://github.com/eps1lon/poe-mods/pull/36"
},
{
"additions": 2240,
"body": 133,
"createdAt": "2018-03-01T11:10:41Z",
"deletions": 494,
"url": "https://github.com/eps1lon/poe-mods/pull/34"
},
{
"additions": 9,
"body": 158,
"createdAt": "2018-03-01T08:30:56Z",
"deletions": 6,
"url": "https://github.com/eps1lon/poe-mods/pull/33"
},
{
"additions": 374887,
"body": 237,
"createdAt": "2018-02-28T22:54:56Z",
"deletions": 234777,
"url": "https://github.com/eps1lon/poe-i18n/pull/27"
},
{
"additions": 42605,
"body": 297,
"createdAt": "2018-02-28T17:15:06Z",
"deletions": 118853,
"url": "https://github.com/eps1lon/poe-mods/pull/32"
},
{
"additions": 168,
"body": 202,
"createdAt": "2018-02-28T07:08:43Z",
"deletions": 116,
"url": "https://github.com/eps1lon/poe-mods/pull/31"
},
{
"additions": 51,
"body": 93,
"createdAt": "2018-02-27T17:17:22Z",
"deletions": 20,
"url": "https://github.com/eps1lon/poe-mods/pull/30"
},
{
"additions": 50,
"body": 46,
"createdAt": "2018-02-26T10:24:40Z",
"deletions": 3,
"url": "https://github.com/eps1lon/poe-i18n/pull/26"
},
{
"additions": 5148,
"body": 534,
"createdAt": "2018-02-24T19:29:21Z",
"deletions": 226,
"url": "https://github.com/eps1lon/poe-i18n/pull/24"
},
{
"additions": 3,
"body": 147,
"createdAt": "2018-02-24T11:48:11Z",
"deletions": 2,
"url": "https://github.com/eps1lon/poe-i18n/pull/23"
},
{
"additions": 30,
"body": 41,
"createdAt": "2018-02-24T10:01:15Z",
"deletions": 23,
"url": "https://github.com/eps1lon/poe-i18n/pull/22"
},
{
"additions": 49131,
"body": 236,
"createdAt": "2018-02-24T09:14:37Z",
"deletions": 2,
"url": "https://github.com/eps1lon/poe-mods/pull/26"
},
{
"additions": 532,
"body": 386,
"createdAt": "2018-02-23T21:41:51Z",
"deletions": 193,
"url": "https://github.com/eps1lon/poe-mods/pull/25"
},
{
"additions": 78,
"body": 368,
"createdAt": "2018-02-21T09:01:31Z",
"deletions": 2,
"url": "https://github.com/styleguidist/react-docgen-typescript/pull/75"
},
{
"additions": 130,
"body": 10,
"createdAt": "2018-02-16T13:36:37Z",
"deletions": 3826,
"url": "https://github.com/eps1lon/poe-i18n/pull/20"
},
{
"additions": 1009,
"body": 142,
"createdAt": "2018-02-10T13:28:29Z",
"deletions": 1,
"url": "https://github.com/eps1lon/poe-mods/pull/23"
},
{
"additions": 114519,
"body": 325,
"createdAt": "2018-02-10T10:28:29Z",
"deletions": 37429,
"url": "https://github.com/eps1lon/poe-mods/pull/22"
},
{
"additions": 5254,
"body": 50,
"createdAt": "2018-02-10T08:10:15Z",
"deletions": 8540,
"url": "https://github.com/eps1lon/poe-recraft/pull/2"
},
{
"additions": 4959,
"body": 52,
"createdAt": "2018-02-08T20:31:41Z",
"deletions": 4958,
"url": "https://github.com/eps1lon/poe-i18n/pull/18"
},
{
"additions": 2,
"body": 157,
"createdAt": "2018-02-08T18:47:57Z",
"deletions": 2,
"url": "https://github.com/reduxjs/redux/pull/2829"
},
{
"additions": 10520,
"body": 264,
"createdAt": "2018-02-07T11:03:20Z",
"deletions": 19493,
"url": "https://github.com/eps1lon/poe-mods/pull/18"
},
{
"additions": 1,
"body": 171,
"createdAt": "2018-02-06T09:36:09Z",
"deletions": 2,
"url": "https://github.com/eps1lon/poe-i18n/pull/17"
},
{
"additions": 278426,
"body": 83,
"createdAt": "2018-02-04T09:29:54Z",
"deletions": 611320,
"url": "https://github.com/eps1lon/poe-i18n/pull/14"
},
{
"additions": 7629,
"body": 95,
"createdAt": "2018-02-04T08:48:00Z",
"deletions": 882,
"url": "https://github.com/eps1lon/poe-db/pull/3"
},
{
"additions": 7,
"body": 69,
"createdAt": "2018-02-03T20:49:28Z",
"deletions": 0,
"url": "https://github.com/OmegaK2/PyPoE/pull/48"
},
{
"additions": 12834,
"body": 22,
"createdAt": "2018-02-03T18:38:02Z",
"deletions": 2107,
"url": "https://github.com/eps1lon/poe-mods/pull/16"
},
{
"additions": 1,
"body": 9,
"createdAt": "2017-12-19T19:00:11Z",
"deletions": 1,
"url": "https://github.com/eps1lon/poe-i18n/pull/10"
},
{
"additions": 1,
"body": 160,
"createdAt": "2017-12-04T15:13:41Z",
"deletions": 1,
"url": "https://github.com/microsoft/dtslint/pull/93"
},
{
"additions": 1,
"body": 115,
"createdAt": "2017-12-01T13:12:32Z",
"deletions": 1,
"url": "https://github.com/microsoft/vscode-tslint/pull/301"
},
{
"additions": 9,
"body": 61,
"createdAt": "2017-11-17T13:23:06Z",
"deletions": 0,
"url": "https://github.com/OmegaK2/PyPoE/pull/42"
},
{
"additions": 1383,
"body": 161,
"createdAt": "2017-11-16T19:06:15Z",
"deletions": 722,
"url": "https://github.com/eps1lon/poe-mods/pull/6"
},
{
"additions": 14,
"body": 1971,
"createdAt": "2017-11-15T17:15:36Z",
"deletions": 2,
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped/pull/21544"
},
{
"additions": 3,
"body": 702,
"createdAt": "2017-10-17T17:05:16Z",
"deletions": 3,
"url": "https://github.com/OmegaK2/PyPoE/pull/41"
},
{
"additions": 1,
"body": 70,
"createdAt": "2017-10-16T05:36:39Z",
"deletions": 1,
"url": "https://github.com/Openarl/PathOfBuilding/pull/675"
},
{
"additions": 3,
"body": 304,
"createdAt": "2017-10-11T16:35:12Z",
"deletions": 0,
"url": "https://github.com/Openarl/PathOfBuilding/pull/671"
},
{
"additions": 1,
"body": 62,
"createdAt": "2017-10-11T16:10:43Z",
"deletions": 0,
"url": "https://github.com/Openarl/PathOfBuilding/pull/670"
},
{
"additions": 3,
"body": 107,
"createdAt": "2017-08-18T12:43:55Z",
"deletions": 3,
"url": "https://github.com/OmegaK2/PyPoE/pull/35"
},
{
"additions": 12,
"body": 453,
"createdAt": "2017-08-03T17:28:17Z",
"deletions": 3,
"url": "https://github.com/OmegaK2/PyPoE/pull/31"
},
{
"additions": 1,
"body": 301,
"createdAt": "2017-08-03T07:04:19Z",
"deletions": 1,
"url": "https://github.com/uber/react-vis-force/pull/49"
},
{
"additions": 1,
"body": 284,
"createdAt": "2017-08-03T06:53:46Z",
"deletions": 1,
"url": "https://github.com/uber/react-vis-force/pull/48"
},
{
"additions": 6,
"body": 636,
"createdAt": "2017-07-29T06:56:37Z",
"deletions": 4,
"url": "https://github.com/lexich/redux-api/pull/162"
},
{
"additions": 29,
"body": 518,
"createdAt": "2017-07-11T09:19:34Z",
"deletions": 4,
"url": "https://github.com/OmegaK2/PyPoE/pull/26"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment